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

:root {
    --primary-green: #1a5445;
    --dark-green: #0f3d30;
    --light-green: #2a6b57;
    --accent-gold: #c9a961;
    --cream: #f5f3ed;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 84, 69, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--cream);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background-color: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.methodology-item {
    background-color: var(--cream);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.methodology-item h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.center-btn {
    text-align: center;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: var(--cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-image {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.placeholder-img {
    font-size: 4rem;
}

.program-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.program-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-card ul li:before {
    content: "•";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.format {
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.why-item {
    text-align: center;
}

.stat {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.why-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.author {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.author h3 {
    color: var(--white);
}

.formula {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--accent-gold);
}

/* Results Section */
.results {
    padding: 80px 0;
    background-color: var(--cream);
}

.results-content {
    max-width: 700px;
    margin: 0 auto;
}

.results-text h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-text ul {
    list-style: none;
}

.results-text ul li {
    padding: 15px 20px;
    background-color: var(--white);
    margin-bottom: 10px;
    border-radius: 10px;
    position: relative;
    padding-left: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-text ul li:before {
    content: "✓";
    color: var(--primary-green);
    position: absolute;
    left: 20px;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Application Form */
.application {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 84, 69, 0.05), rgba(42, 107, 87, 0.05));
}

.application-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
    font-weight: 600;
}

.btn-large i {
    font-size: 1.5rem;
    margin-right: 12px;
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
    background-color: var(--cream);
}

.partnership-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.partnership-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.partnership-box h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.partnership-box h4 {
    color: var(--primary-green);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.partnership-box ul {
    list-style: none;
    margin-bottom: 2rem;
}

.partnership-box ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.8rem;
}

.partnership-box ul li:before {
    content: "→";
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
    text-align: center;
}

.footer h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-note {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item .label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .application-cta {
        padding: 40px 20px;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 16px 35px;
    }

    .programs-grid,
    .partnership-content {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .stat {
        font-size: 3rem;
    }

    /* Mobile Growth Visualization */
    .money-stack {
        height: 200px;
        gap: 20px;
    }

    .money-bar {
        width: 80px;
    }

    .growth-badge {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .arrow-growth {
        font-size: 2rem;
    }

    /* Mobile Revenue Counter */
    .revenue-amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 2rem;
    }

    .revenue-icon {
        font-size: 3rem;
    }

    .revenue-counter {
        padding: 30px 20px;
    }

    /* Mobile Stats */
    .stat-container {
        flex-direction: column;
        gap: 5px;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .rotating-circle {
        width: 60px;
        height: 60px;
    }

    .rotating-circle i {
        font-size: 2rem;
    }

    /* Hide some floating money on mobile */
    .money-rain::before,
    .money-rain::after {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Money Rain Animation */
.money-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.money-rain::before,
.money-rain::after {
    content: '💰';
    position: absolute;
    font-size: 2rem;
    animation: fall 15s linear infinite;
    opacity: 0.15;
}

.money-rain::before {
    left: 20%;
    animation-delay: 2s;
}

.money-rain::after {
    content: '💵';
    left: 80%;
    animation-delay: 5s;
}

@keyframes fall {
    0% {
        top: -10%;
        transform: rotate(0deg);
    }
    100% {
        top: 110%;
        transform: rotate(360deg);
    }
}


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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
    }
    50% {
        box-shadow: 0 0 50px rgba(201, 169, 97, 0.8);
    }
}

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}


/* Pulse Button */
.pulse-btn {
    animation: buttonPulse 2s infinite;
    position: relative;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 84, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(26, 84, 69, 0);
    }
}

.pulse-btn i {
    margin-right: 8px;
}

/* Method Icons */
.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(26, 84, 69, 0.3);
}

.method-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.method-icon-overlay {
    position: absolute;
    font-size: 1rem !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: var(--accent-gold) !important;
}

.methodology-item:hover .method-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--accent-gold), #d4af37);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.methodology-item:hover .method-icon i:not(.method-icon-overlay) {
    transform: scale(0.8);
    opacity: 0.3;
}

.methodology-item:hover .method-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
    animation: iconPop 0.5s ease-out;
}

@keyframes iconPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Animate On Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Growth Visualization */
.growth-visualization {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 84, 69, 0.05), rgba(42, 107, 87, 0.05));
    border-radius: 20px;
}

.money-stack {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    height: 300px;
}

.money-bar {
    width: 120px;
    height: var(--height);
    background: linear-gradient(180deg, var(--light-green), var(--primary-green));
    border-radius: 10px 10px 0 0;
    position: relative;
    animation: growUp 1.5s ease-out var(--delay);
    animation-fill-mode: backwards;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 84, 69, 0.3);
}

.money-bar.growing {
    background: linear-gradient(180deg, var(--accent-gold), #d4af37);
    animation: growUpLarge 2s ease-out var(--delay);
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

@keyframes growUpLarge {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

.bar-label {
    position: absolute;
    bottom: -30px;
    font-weight: 600;
    color: var(--primary-green);
}

.growth-badge {
    position: absolute;
    top: -40px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.arrow-growth {
    font-size: 3rem;
    color: var(--accent-gold);
    align-self: center;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Stats Container */
.stat-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: iconGlow 2s ease-in-out infinite;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(26, 84, 69, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(26, 84, 69, 0.8);
    }
}

/* Revenue Showcase */
.revenue-showcase {
    text-align: center;
    margin-bottom: 4rem;
}

.revenue-counter {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    padding: 50px;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.revenue-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.revenue-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
    animation: coinFlip 2s ease-in-out infinite;
}

@keyframes coinFlip {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.revenue-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.currency {
    font-size: 3rem;
    color: var(--accent-gold);
}

.revenue-counter p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

/* Result Items */
.results-text ul {
    list-style: none;
}

.result-item {
    padding: 20px 20px 20px 70px;
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: slideInLeft 0.6s ease-out var(--item-delay) forwards;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(26, 84, 69, 0.15);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.result-item i {
    position: absolute;
    left: 20px;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.result-item span {
    flex: 1;
}

/* Counting Animation */
.stat-number.counting,
.amount-number {
    display: inline-block;
}

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

.methodology-item,
.program-card,
.partnership-box {
    animation: fadeInUp 0.6s ease-out;
}
