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

body {
    font-family: 'Source Sans Pro', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fdfcfa;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/bkground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fdfcfa;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 90, 67, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 90, 67, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(34, 90, 67, 0.05) 60%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero .hero-emphasis {
    font-weight: 600;
    color: #4ade80;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 48px;
    opacity: 0.85;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #225a43;
    color: #fdfcfa;
    border: 2px solid #225a43;
}

.btn-primary:hover {
    background-color: #1a4633;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(34, 90, 67, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fdfcfa;
    border: 2px solid #fdfcfa;
}

.btn-secondary:hover {
    background-color: #fdfcfa;
    color: #2c2c2c;
    transform: translateY(-1px);
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #e0e0e0;
}

.section:nth-child(odd) {
    background-color: #fdfcfa;
}

.section:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(34,90,67,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-dots)"/></svg>');
    pointer-events: none;
}

.section h2 {
    font-size: 3.8rem;
    text-align: center;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #225a43, transparent);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 80px;
    color: #666666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    height: 320px;
    width: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdfcfa;
    font-size: 5rem;
    font-weight: 300;
    position: relative;
    overflow: hidden;
    background-image: url('images/gary.jpg');
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(240, 240, 240, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(34, 90, 67, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.about-image span {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    display: none; /* Hide text when using actual image */
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
}

.about-text h3 {
    color: #225a43;
    margin-bottom: 24px;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.about-text p {
    margin-bottom: 24px;
    color: #444444;
}

/* Strategies Grid */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
}

@media (max-width: 1200px) {
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.strategy-card {
    background: #ffffff;
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #225a43;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.strategy-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.strategy-icon {
    width: 72px;
    height: 72px;
    background: #225a43;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: #fdfcfa;
    font-size: 1.8rem;
    font-weight: 300;
}

.strategy-card h3 {
    color: #2c2c2c;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.strategy-card p {
    color: #666666;
    line-height: 1.7;
    font-weight: 300;
}

/* Algorithmic Trading Section */
.algo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.algo-list {
    list-style: none;
}

.algo-list li {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
    border-left: 4px solid #225a43;
    transition: all 0.3s ease;
}

.algo-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.algo-list li strong {
    color: #2c2c2c;
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.algo-list li p {
    color: #666666;
    line-height: 1.6;
    font-weight: 300;
}

.algo-visual {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdfcfa;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 300;
    position: relative;
    overflow: hidden;
    background-image: url('images/algo.png');
    background-size: cover;
    background-position: center;
}

.algo-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(44, 44, 44, 0.4) 0%, rgba(34, 90, 67, 0.3) 50%, rgba(44, 44, 44, 0.4) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0,40 L40,0" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
}

.algo-visual span {
    position: relative;
    z-index: 1;
    font-family: 'Source Sans Pro', sans-serif;
    display: none; /* Hide text when using actual image */
}

/* Internships Section */
.internship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.skill-item {
    background: #ffffff;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    color: #2c2c2c;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #225a43;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-item:hover::before {
    transform: scaleX(1);
}

.skill-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    background: #ffffff;
}

.contact-info {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: #fdfcfa;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(34, 90, 67, 0.15) 60%);
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    margin-bottom: 24px;
    font-size: 2.2rem;
    font-weight: 500;
}

.contact-info p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info a {
    color: #225a43;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: #225a43;
}

/* Trust Section */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.trust-badge {
    text-align: center;
    padding: 60px 32px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #225a43;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trust-badge:hover::before {
    transform: scaleX(1);
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.trust-number {
    font-size: 3.8rem;
    font-weight: 300;
    color: #225a43;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.trust-label {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fdfcfa;
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(34, 90, 67, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(34, 90, 67, 0.2) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="final-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23final-grid)"/></svg>');
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: #fdfcfa;
    font-size: 4.2rem;
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 48px;
    opacity: 0.85;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .algo-content,
    .internship-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .skills-list {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #225a43;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #225a43;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Publications & Expertise Section */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.publication-card {
    background: #ffffff;
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    border-left: 4px solid #225a43;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.publication-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.publication-card h3 {
    color: #2c2c2c;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 500;
}

.publication-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.publication-card .book-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    background: #225a43;
    color: #fdfcfa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.publication-card .book-link:hover {
    background: #1a4633;
    transform: translateY(-1px);
}

/* Advanced Trading Section */
.advanced-trading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.trading-method {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 36px 28px;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trading-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #225a43, #2d7356);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trading-method:hover::before {
    transform: scaleX(1);
}

.trading-method:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.trading-method h3 {
    color: #2c2c2c;
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 500;
}

.trading-method p {
    color: #666666;
    line-height: 1.6;
}

/* Day Trading Rules Section */
.trading-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.rule-card {
    background: #ffffff;
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    border-left: 4px solid #225a43;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(34, 90, 67, 0.1), rgba(34, 90, 67, 0.05));
    transform: rotate(45deg) translate(20px, -20px);
    transition: all 0.3s ease;
}

.rule-card:hover::before {
    transform: rotate(45deg) translate(15px, -15px);
    background: linear-gradient(135deg, rgba(34, 90, 67, 0.15), rgba(34, 90, 67, 0.08));
}

.rule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-left-color: #1a4633;
}

.rule-card h3 {
    color: #2c2c2c;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.rule-card p {
    color: #666666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Bull Bear Divider Section */
.bull-bear-divider {
    height: 600px;
    background-image: url('bull_bear_lg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bull-bear-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(44, 44, 44, 0.7) 0%, 
        rgba(34, 90, 67, 0.6) 50%, 
        rgba(44, 44, 44, 0.7) 100%
    );
    z-index: 1;
}

.bull-bear-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="divider-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23divider-grid)"/></svg>');
    z-index: 2;
}

.bull-bear-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #fdfcfa;
}

.bull-bear-quote {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.bull-bear-quote h3 {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.2;
    transition: opacity 0.5s ease-in-out;
}

.bull-bear-quote p {
    font-size: 1.3rem;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.6;
    transition: opacity 0.5s ease-in-out;
}

/* Video Filler Section */
.video-filler-section {
    position: relative;
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -3;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(44, 44, 44, 0.6) 0%, 
        rgba(34, 90, 67, 0.5) 50%, 
        rgba(44, 44, 44, 0.6) 100%
    );
    z-index: -2;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.strategy-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.strategy-card:nth-child(1) { animation-delay: 0.1s; }
.strategy-card:nth-child(2) { animation-delay: 0.2s; }
.strategy-card:nth-child(3) { animation-delay: 0.3s; }
.strategy-card:nth-child(4) { animation-delay: 0.4s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #225a43;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a4633;
}
