/* Homepage Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEB3B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic {
    font-style: italic;
    font-family: Georgia, serif;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e0e0e0;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFEB3B);
    color: #000;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .header-logo .logo-image {
        height: 120px !important;
        width: auto !important;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .header-logo .logo-image {
        height: 80px !important;
        width: auto !important;
        max-width: 120px;
    }
}

.mobile-nav-link {
    color: #FFD700;
    text-decoration: none;
    padding: 1.2rem;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    padding-left: 1.5rem;
}

.nav-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
