/* Responsive Styles */

/* Extra large screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero__title {
        font-size: 4rem;
    }
    
    .section__title {
        font-size: 3rem;
    }
}

/* Large screens (992px - 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
    .container {
        max-width: 960px;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
}

/* Medium screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.25rem;
    }
    
    .section__title {
        font-size: 2.25rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about__image {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .about__text {
        text-align: center;
    }
    
    .about__heading::after {
        margin: 0.5rem auto;
    }
    
    .services__list,
    .benefits__list,
    .testimonials__list,
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .nav-toggle-label {
        display: block;
        z-index: 1000;
    }
    
    .nav-toggle:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav__link {
        font-size: 1.25rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin: 0 auto;
    }
}

/* Small screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.15rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .section__subtitle {
        font-size: 1.1rem;
    }
    
    .services__list,
    .benefits__list,
    .testimonials__list {
        grid-template-columns: 1fr;
    }
    
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .contact__form-container {
        padding: 2rem 1.5rem;
    }
}

/* Extra small screens (575px and down) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero__title {
        font-size: 2.25rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .about__heading {
        font-size: 1.5rem;
    }
    
    .services__list,
    .benefits__list,
    .testimonials__list,
    .process__steps {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .contact__form-container {
        padding: 1.5rem 1rem;
    }
    
    .policy__container {
        padding: 2rem 1.5rem;
    }
    
    .policy__title {
        font-size: 2rem;
    }
}
