/* Responsive Styles
------------------------------------------*/

/* Large Screens */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

/* Medium Screens */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .contact-phone {
        order: 3;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        display: none;
    }
    
    .main-navigation {
        margin-left: auto;
    }
    
    .main-navigation .menu-toggle {
        display: block;
        position: absolute;
        opacity: 0;
        cursor: pointer;
        width: 30px;
        height: 30px;
        z-index: 3;
    }
    
    .main-navigation .menu-icon {
        display: block;
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        z-index: 2;
    }
    
    .menu-icon .menu-line {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        position: absolute;
        left: 0;
        transition: all 0.3s;
    }
    
    .menu-icon .menu-line:nth-child(1) {
        top: 0;
    }
    
    .menu-icon .menu-line:nth-child(2) {
        top: 10px;
    }
    
    .menu-icon .menu-line:nth-child(3) {
        top: 20px;
    }
    
    .menu-toggle:checked ~ .menu-icon .menu-line:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }
    
    .menu-toggle:checked ~ .menu-icon .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon .menu-line:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: var(--background-color);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        border-left: 1px solid var(--border-color);
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0 0 1.5rem 0;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta .btn {
        margin-right: 0;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
    }
}

/* Extra Small Screens */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        text-align: center;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
} 