  :root {
            --green: #4a9d47;
            --red: #d80000;
            --dark-green: #3a7d37;
            --light-green: #e8f5e7;
            --gray-dark: #2c3e50;
            --gray-medium: #7f8c8d;
            --gray-light: #ecf0f1;
            --white: #ffffff;
        }


    
        .hero {
            background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
            color: var(--white);
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

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

        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--white);
            color: var(--green);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

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

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

        /* AI Overview Section */
        .ai-overview {
            background: var(--light-green);
            padding: 60px 20px;
            border-left: 6px solid var(--green);
        }

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

        .section-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--green);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.8rem;
            color: var(--gray-dark);
            margin-bottom: 30px;
            margin-top: 40px;
            font-weight: 600;
        }

        /* Content Sections */
        .content-section {
            padding: 60px 20px;
        }

        .content-section:nth-child(even) {
            background: var(--gray-light);
        }

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

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--green);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(74, 157, 71, 0.2);
        }

        .feature-card h3 {
            color: var(--green);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .feature-card ul {
            list-style: none;
            padding-left: 0;
        }

        .feature-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .feature-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: bold;
        }

        /* Phase Table */
        .phase-table {
            width: 100%;
            margin-top: 30px;
            border-collapse: collapse;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .phase-table thead {
            background: var(--green);
            color: var(--white);
        }

        .phase-table th,
        .phase-table td {
            padding: 18px;
            text-align: left;
        }

        .phase-table tbody tr {
            border-bottom: 1px solid var(--gray-light);
        }

        .phase-table tbody tr:hover {
            background: var(--light-green);
        }

        /* Cost Breakdown */
        .cost-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .cost-item {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 4px solid var(--green);
        }

        .cost-label {
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .cost-value {
            color: var(--green);
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* Alert Boxes */
        .alert {
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 6px solid;
        }

        .alert-success {
            background: var(--light-green);
            border-color: var(--green);
        }

        .alert-warning {
            background: #fff3cd;
            border-color: #ffc107;
        }

        .alert-danger {
            background: #f8d7da;
            border-color: var(--red);
        }

        .alert h4 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        /* Checklist */
        .checklist {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            margin-top: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .checklist-item {
            padding: 15px;
            margin: 10px 0;
            background: var(--light-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .checklist-item::before {
            content: '☑';
            font-size: 1.5rem;
            color: var(--green);
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, var(--green), var(--dark-green));
            color: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(74, 157, 71, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Red Flags */
        .red-flag {
            background: #fff5f5;
            border-left: 6px solid var(--red);
            padding: 20px;
            margin: 15px 0;
            border-radius: 8px;
        }

        .red-flag::before {
            content: '🚩 ';
            font-size: 1.2rem;
        }

        /* ROI Section */
        .roi-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .roi-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 6px solid var(--green);
        }

        .roi-card h3 {
            color: var(--green);
            margin-bottom: 20px;
            font-size: 1.6rem;
        }

        .roi-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gray-dark);
            margin: 15px 0;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .service-item {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(74, 157, 71, 0.3);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .service-item h3 {
            color: var(--green);
            margin-bottom: 10px;
        }

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

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1.4rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .phase-table {
                font-size: 0.9rem;
            }

            .phase-table th,
            .phase-table td {
                padding: 12px 8px;
            }
        }

        /* Smooth Animations */
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }

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

        /* Total Budget Highlight */
        .total-budget {
            background: linear-gradient(135deg, var(--green), var(--dark-green));
            color: var(--white);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
            box-shadow: 0 6px 20px rgba(74, 157, 71, 0.3);
        }

        .total-budget h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .total-budget .amount {
            font-size: 2.8rem;
            font-weight: 700;
        }