/* Responsive Styles */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }

    .header-container,
    .footer-container {
        padding: 0 2rem;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Grid Adjustments */
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* General Grid Layouts */
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    /* Text Adjustments */
    .large-text {
        font-size: 90%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Header Adjustments */
    .main-header {
        padding: 1rem 0;
    }

    .logo a {
        font-size: 1.5rem;
    }

    /* Grid Layouts */
    .grid-3-cols,
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer Adjustments */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav h4,
    .footer-social h4 {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

    /* Button Adjustments */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Text Adjustments */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Footer Adjustments */
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .mobile-menu-toggle {
        display: none;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}
