/* Tablet Styles */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .highlight-cards {
        flex-direction: column;
    }
    
    .card {
        margin-bottom: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .nav {
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-list {
        flex-direction: column;
        display: none;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero {
        margin-top: 120px;
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .highlights h2,
    .conditions h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}