
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #03992e;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text h1 {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1f2937;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #03992e;
        }

        .btn-primary {
            background: #03992e;
            color: white;
            border: none;
            padding: 0.625rem 1.5rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #e55a28;
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 100vh;
            background: linear-gradient(to bottom right, #1f2937, #000000, #374151);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 5rem 4rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(255, 107, 53, 0.3);
            background: rgba(255, 107, 53, 0.1);
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
            width: fit-content;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #03992e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .badge span {
            color: #fbbf24;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .subtitle {
            font-size: 0.75rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: bold;
            color: white;
            line-height: 1.1;
            margin-bottom: 0.5rem;
        }

        .hero h1.italic {
            color: #03992e;
            font-style: italic;
            font-family: Georgia, serif;
            margin-bottom: 1.5rem;
        }

        .tagline {
            color: #9ca3af;
            font-size: 1.125rem;
            font-style: italic;
            margin-bottom: 3rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid #4b5563;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            border-color: #03992e;
            background: rgba(255, 107, 53, 0.1);
        }

        .btn-large {
            padding: 1rem 2rem;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.5), transparent);
            margin-bottom: 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-item h3 {
            font-size: 1.875rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.25rem;
        }

        .stat-item p {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-image {
            position: relative;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
        }

        .floating-cards {
            position: absolute;
            bottom: 3rem;
            left: 2rem;
            right: 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 0.5rem;
            padding: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .info-card .label {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .info-card .value {
            font-size: 0.875rem;
            font-weight: bold;
            color: #1f2937;
        }

        .info-card .desc {
            font-size: 0.75rem;
            color: #4b5563;
            margin-top: 0.25rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 5rem 1.5rem;
            background: linear-gradient(to bottom, #000000, #1f2937);
        }

        .stats-section .container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-8px);
        }

        .icon-circle {
            width: 64px;
            height: 64px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s;
        }

        .stat-card:hover .icon-circle {
            background: #03992e;
        }

        .icon-circle svg {
            width: 32px;
            height: 32px;
            stroke: #03992e;
            transition: stroke 0.3s;
        }

        .stat-card:hover .icon-circle svg {
            stroke: white;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.25rem;
        }

        .stat-subtitle {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        /* Mission Section */
        .mission-section {
            padding: 6rem 1.5rem;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .line {
            width: 48px;
            height: 1px;
            background: #03992e;
        }

        .section-badge span {
            color: #03992e;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        .section-title {
            font-size: 3.75rem;
            font-weight: bold;
            color: #ed075f;
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            color: #03992e;
            font-style: italic;
            font-family: Georgia, serif;
        }

        .section-description {
            color: #4b5563;
            font-size: 1.125rem;
            max-width: 768px;
            margin: 0 auto;
            line-height: 1.75;
        }

        .causes-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .cause-card {
            position: relative;
            background: linear-gradient(to bottom right, #f9fafb, white);
            border: 1px solid #e5e7eb;
            border-radius: 1rem;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.5s;
            overflow: hidden;
        }

        .cause-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .cause-number-bg {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 5rem;
            font-weight: bold;
            color: rgba(255, 107, 53, 0.05);
            line-height: 1;
        }

        .cause-content {
            position: relative;
            z-index: 10;
        }

        .cause-number {
            color: #03992e;
            font-size: 1.875rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .cause-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .cause-card:hover .cause-icon {
            background: #03992e;
            transform: scale(1.1);
        }

        .cause-icon svg {
            width: 28px;
            height: 28px;
            stroke: #03992e;
            transition: stroke 0.3s;
        }

        .cause-card:hover .cause-icon svg {
            stroke: white;
        }

        .cause-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .cause-description {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Record Section */
        .record-section {
            padding: 6rem 1.5rem;
            background: linear-gradient(to bottom right, #f9fafb, white);
        }

        .record-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .image-wrapper {
            position: relative;
        }

        .glow {
            position: absolute;
            inset: -1rem;
            background: linear-gradient(to right, #03992e, #e55a28);
            border-radius: 1.5rem;
            opacity: 0.2;
            filter: blur(2rem);
            transition: opacity 0.5s;
        }

        .image-wrapper:hover .glow {
            opacity: 0.3;
        }

        .record-image {
            position: relative;
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 1rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .image-badge {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            background: #03992e;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .badge-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-text .small {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .badge-text .large {
            font-size: 1.125rem;
            font-weight: bold;
        }

        .benefits-list {
            margin-top: 3rem;
        }

        .benefit-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .benefit-item:hover .benefit-icon {
            background: #03992e;
        }

        .benefit-icon svg {
            width: 24px;
            height: 24px;
            stroke: #03992e;
            transition: stroke 0.3s;
        }

        .benefit-item:hover .benefit-icon svg {
            stroke: white;
        }

        .benefit-content .benefit-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .benefit-number {
            color: #03992e;
            font-size: 1.125rem;
            font-weight: bold;
        }

        .benefit-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1f2937;
        }

        .benefit-text {
            color: #4b5563;
            line-height: 1.6;
        }

        /* Rewards Section */
        .rewards-section {
            padding: 6rem 1.5rem;
            background: white;
        }

        .rewards-grid {
            max-width: 1152px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .reward-card {
            position: relative;
            background: linear-gradient(to bottom right, #f9fafb, white);
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.5s;
        }

        .reward-card:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .reward-glow {
            position: absolute;
            inset: -1rem;
            background: linear-gradient(to right, rgba(255, 107, 53, 0.2), rgba(229, 90, 40, 0.2));
            border-radius: 1.5rem;
            filter: blur(1.5rem);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .reward-card:hover .reward-glow {
            opacity: 1;
        }

        .instant-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #03992e;
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
        }

        .reward-header {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .reward-icon {
            width: 64px;
            height: 64px;
            background: #03992e;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .reward-header-text .small-text {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .reward-header-text .large-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
        }

        .certificate-box {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .certificate-name {
            font-size: 1.875rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .verified {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #10b981;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .detail-item .detail-label {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .detail-item .detail-value {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1f2937;
        }

        .certificate-title {
            text-align: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .certificate-divider {
            width: 96px;
            height: 4px;
            background: #03992e;
            margin: 0 auto;
            border-radius: 9999px;
        }

        .certificate-text {
            font-size: 0.875rem;
            color: #4b5563;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .participant-name {
            font-size: 1.875rem;
            font-weight: bold;
            color: #1f2937;
            margin: 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #03992e;
            display: inline-block;
        }

        .signatures {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .signature-line {
            text-align: center;
        }

        .signature-line .line {
            height: 1px;
            background: #d1d5db;
            margin-bottom: 0.5rem;
        }

        .signature-line .title {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Schedule Section */
        .schedule-section {
            padding: 6rem 1.5rem;
            background: linear-gradient(to bottom right, #f9fafb, white);
        }

        .schedule-container {
            max-width: 1152px;
            margin: 0 auto;
        }

        .schedule-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .schedule-info-card {
            background: linear-gradient(to bottom right, #fff7ed, white);
            border: 2px solid #fed7aa;
            border-radius: 1rem;
            padding: 2rem;
        }

        .schedule-info-card.secondary {
            background: linear-gradient(to bottom right, #f9fafb, white);
            border-color: #e5e7eb;
        }

        .schedule-info-card .info-label {
            color: #03992e;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .schedule-info-card .info-value {
            font-size: 2.25rem;
            font-weight: bold;
            color: #1f2937;
        }

        .timeline {
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 8rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #03992e, #fbbf24, #fcd34d);
        }

        .timeline-item {
            position: relative;
            display: flex;
            gap: 2rem;
            align-items: start;
            margin-bottom: 2rem;
        }

        .timeline-time {
            width: 5rem;
            text-align: right;
            font-weight: bold;
            color: #1f2937;
            font-size: 1.125rem;
        }

        .timeline-time.highlight {
            color: #03992e;
            font-size: 1.5rem;
        }

        .timeline-dot {
            position: relative;
            z-index: 10;
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: white;
            border: 2px solid #03992e;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .timeline-item:hover .timeline-dot {
            background: #03992e;
            transform: scale(1.1);
        }

        .timeline-dot-inner {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #03992e;
            transition: background 0.3s;
        }

        .timeline-item:hover .timeline-dot-inner {
            background: white;
        }

        .timeline-dot.highlight {
            background: #03992e;
            border-width: 4px;
            border-color: #fed7aa;
            transform: scale(1.25);
        }

        .timeline-content {
            flex: 1;
            padding-bottom: 2rem;
        }

        .timeline-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .timeline-item:hover .timeline-card {
            border-color: #fed7aa;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .timeline-card.highlight {
            background: linear-gradient(to right, #03992e, #e55a28);
            color: white;
            border: none;
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
        }

        .timeline-card-text {
            font-weight: 600;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 1.5rem;
            background: linear-gradient(to bottom right, #1f2937, #000000, #374151);
            position: relative;
            overflow: hidden;
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .cta-container {
            max-width: 896px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            font-size: 4.5rem;
            font-weight: bold;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .cta-description {
            color: #9ca3af;
            font-size: 1.25rem;
            line-height: 1.75;
            max-width: 672px;
            margin: 0 auto 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: #03992e;
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            border-radius: 0.75rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: #e55a28;
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(255, 107, 53, 0.5);
        }

        .cta-footer {
            margin-top: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .cta-footer .separator {
            width: 1px;
            height: 1rem;
            background: #374151;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-brand .brand-text .brand-name {
            font-size: 1.125rem;
            font-weight: bold;
        }

        .footer-brand .brand-text .brand-subtitle {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .footer-description {
            color: #9ca3af;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #374151;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            text-decoration: none;
            color: white;
        }

        .social-link:hover {
            background: #03992e;
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #03992e;
        }

        .footer-contact {
            color: #9ca3af;
        }

        .footer-contact li {
            margin-bottom: 0.75rem;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #03992e;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-section .container {
                grid-template-columns: 1fr;
            }

            .causes-grid {
                grid-template-columns: 1fr;
            }

            .record-container {
                grid-template-columns: 1fr;
            }

            .rewards-grid {
                grid-template-columns: 1fr;
            }

            .schedule-info-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-title {
                font-size: 3rem;
            }
        }

/* New Styles */

.logo img{
    width: 100%;
    max-width: 300px;
}

.footer-brand img{
    width: 100%;
    max-width: 300px;
}
/* ===== NEW SECTIONS — Mega Charity Run 2026 ===== */

/* Benefits cards grid (rewards section) */
.benefits-cards-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1.5rem;
}

.benefit-card {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: #03992e;
}

.benefit-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(3,153,46,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-card-icon {
    background: #03992e;
}

.benefit-card-icon svg {
    stroke: #03992e;
    transition: stroke 0.3s;
}

.benefit-card:hover .benefit-card-icon svg {
    stroke: white;
}

.benefit-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-card-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom right, #f9fafb, white);
}

.pricing-grid {
    max-width: 800px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-card {
    position: relative;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border-color: #03992e;
    background: linear-gradient(to bottom right, #f0fdf4, white);
    box-shadow: 0 10px 30px rgba(3,153,46,0.15);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #03992e;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-tag {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #03992e;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.pricing-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 0.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.pricing-features li svg {
    stroke: #03992e;
    flex-shrink: 0;
}

.slots-warning {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #92400e;
    font-size: 0.95rem;
}

.slots-warning svg {
    stroke: #f59e0b;
    flex-shrink: 0;
}

/* Register Section */
.register-section {
    padding: 6rem 1.5rem;
    background: white;
}

.register-container {
    max-width: 1100px;
    margin: 0 auto;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.qr-card {
    display: flex;
    justify-content: center;
}

.qr-placeholder {
    background: linear-gradient(to bottom right, #f0fdf4, white);
    border: 2px dashed #03992e;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-box {
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.qr-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.qr-sublabel {
    font-size: 0.8rem;
    color: #9ca3af;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #03992e;
    background: #f0fdf4;
    transform: translateX(6px);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: rgba(3,153,46,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: #03992e;
}

.contact-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.organiser-note {
    background: linear-gradient(to right, #03992e, #e55a28);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    color: white;
    text-align: center;
}

.organiser-note p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.25rem;
}

.organiser-note strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsive updates */
@media (max-width: 768px) {
    .benefits-cards-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .register-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Scroll Animations ───────────────────────────────────────
   Uses only `opacity` and `transform` — GPU-composited properties.
   Zero layout recalc, zero paint cost. IntersectionObserver fires
   from the main thread but the actual visual transition is offloaded
   to the compositor, keeping scroll perfectly smooth.
──────────────────────────────────────────────────────────────── */

/* Base hidden state — applied by JS before observation */
.anim-base {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Variant: fade up */
.anim-fade-up {
    transform: translateY(36px);
}

/* Variant: fade from left */
.anim-fade-left {
    transform: translateX(48px);
}

/* Variant: fade from right */
.anim-fade-right {
    transform: translateX(-48px);
}

/* Variant: zoom in */
.anim-zoom-in {
    transform: scale(0.92);
}

/* Visible state — JS adds this class when element enters viewport */
.anim-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .anim-base {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto;
    }
}
