/* Responsive Styles */

/* Tablets and Small Desktops */
@media screen and (max-width: 992px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 400px;
    }
    
    .referral-content {
        flex-direction: column;
        text-align: center;
    }
    
    .referral-tiers {
        justify-content: center;
    }
    
    .referral-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        justify-content: space-between;
    }
    
    .footer-col {
        flex-basis: calc(50% - 40px);
    }
}

/* Mobile Phones */
@media screen and (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 10px 0 10px 20px;
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-tiers {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col {
        flex-basis: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

/* Small Mobile Phones */
@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .tab-btn {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .result-amount span {
        font-size: 36px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}