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

:root {
    --primary-green: #2A5434;
    --light-green: #4A7C59;
    --accent-yellow: #FFB700;
    --accent-orange: #FF8C00;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --gradient-start: rgba(42, 84, 52, 0.95);
    --gradient-end: rgba(42, 84, 52, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow: hidden;
    background-color: #000;
}

.logo-center {
    height: 80px;
    width: auto;
    margin-top: 20px;
    margin-bottom: 0.5rem;
    margin-left: -30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background-color: #000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-image img.loaded {
    opacity: 1;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 740px;
    margin-left: 5%;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.features {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.feature-text {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0;
    color: var(--accent-yellow);
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--text-dark);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 183, 0, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 2px solid var(--accent-yellow);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 183, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 183, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .content-overlay {
        background: linear-gradient(180deg, var(--gradient-start) 0%, rgba(42, 84, 52, 0.85) 100%);
        padding: 1.5rem;
    }
    
    .content-wrapper {
        margin: 0 auto;
        text-align: center;
        max-width: 600px;
    }
    
    .logo-center {
        height: 60px;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .features {
        align-items: flex-start;
        padding: 1.2rem;
        margin-bottom: 1.8rem;
    }
    
    .feature {
        font-size: 1rem;
        justify-content: flex-start;
        text-align: left;
        align-items: flex-start;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .enrollment-year {
        margin-top: -1.6rem;
        margin-bottom: 1.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 1.1rem 2.2rem;
    }
    
    .website-link {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .website-link .arrow {
        margin-left: 0.4rem;
        font-size: 1.1rem;
    }
}

.website-link {
    position: fixed;
    bottom: 2rem;
    right: 5%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 2px solid var(--accent-yellow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.website-link:hover {
    background: rgba(255, 183, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 183, 0, 0.3);
}

.website-link .arrow {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.website-link:hover .arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .website-link {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.enrollment-year {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: -1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .content-overlay {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .content-wrapper {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .logo-center {
        height: 50px;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .features {
        padding: 1rem;
        gap: 0.3rem;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .feature {
        font-size: 0.9rem;
        gap: 0.8rem;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-text {
        line-height: 1.3;
    }
    
    .feature-icon {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .enrollment-year {
        font-size: 0.9rem;
        margin-top: -1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .website-link {
        bottom: 0.5rem;
        right: 0.5rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .website-link .arrow {
        margin-left: 0.3rem;
        font-size: 1rem;
    }
}