  :root {
            --primary-green: #0d3b2e;
            --secondary-green: #1a4d3d;
            --accent-orange: #fd6e07;
            --success-green: #86efac;
            --dark-gray: #2d3748;
            --medium-gray: #64748b;
            --light-bg: #f7f9f7;
            --border-gray: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-green) !important;
        }
        
        .navbar-brand span {
            color: var(--accent-orange);
        }
        
        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent-orange) !important;
        }
        
        .btn-primary {
            background: var(--accent-orange);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(253, 110, 7, 0.3);
        }
        
        .btn-primary:hover {
            background: #e55f06;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(253, 110, 7, 0.4);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::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="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }
        
        .hero-section .highlight {
            color: var(--accent-orange);
        }
        
        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 600px;
        }
        
        .trust-bar {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        
        .trust-bar p {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 0;
        }
        
        .guarantee-badge {
            background: var(--accent-orange);
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        /* Problem Section */
        .problem-section {
            padding: 80px 0;
            background: white;
        }
        
        .problem-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 2rem;
        }
        
        .problem-card {
            background: var(--light-bg);
            border-left: 4px solid var(--accent-orange);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .problem-card:hover {
            transform: translateX(5px);
        }
        
        .problem-card i {
            color: var(--accent-orange);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .problem-card h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }
        
        .solution-box {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 2rem;
        }
        
        .solution-box h3 {
            margin-bottom: 1.5rem;
        }
        
        .solution-box ul {
            list-style: none;
            padding: 0;
        }
        
        .solution-box li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
        }
        
        .solution-box li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-orange);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .how-it-works h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .step-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .step-icon {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }
        
        .step-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        
        .step-card p {
            color: var(--medium-gray);
            margin-bottom: 0;
        }
        
        .result-tagline {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            border: 2px solid var(--accent-orange);
        }
        
        .result-tagline h4 {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-bottom: 0;
        }
        
        /* Social Proof */
        .social-proof {
            padding: 80px 0;
            background: white;
        }
        
        .social-proof h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .testimonial-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 12px;
            height: 100%;
            border-left: 4px solid var(--success-green);
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            border-left-color: var(--accent-orange);
            transform: translateY(-5px);
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-right: 1rem;
        }
        
        .author-info h5 {
            margin-bottom: 0.25rem;
            color: var(--primary-green);
            font-size: 1rem;
        }
        
        .author-info p {
            margin-bottom: 0;
            color: var(--medium-gray);
            font-size: 0.9rem;
        }
        
        /* Services Preview */
        .services-preview {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .services-preview h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid var(--primary-green);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            border-top-color: var(--accent-orange);
        }
        
        .service-price {
            color: var(--accent-orange);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .service-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .service-features li {
            padding: 0.5rem 0;
            padding-left: 1.75rem;
            position: relative;
            color: var(--dark-gray);
        }
        
        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }
        
        /* Final CTA */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.75rem;
            margin-bottom: 1rem;
        }
        
        .final-cta p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-white {
            background: white;
            color: var(--primary-green);
            border: none;
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255,255,255,0.3);
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.4);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-green);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer h5 {
            margin-bottom: 1rem;
            color: white;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--accent-orange);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255,255,255,0.7);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.25rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
            
            .problem-section h2,
            .how-it-works h2,
            .social-proof h2,
            .services-preview h2 {
                font-size: 2rem;
            }
            
            .final-cta h2 {
                font-size: 2rem;
            }
            
            .step-card {
                margin-bottom: 2rem;
            }
        }



        /* how it works */


         /* Hero Section */
        .page-hero {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .page-hero p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
        }
        
        .process-step {
            margin-bottom: 80px;
        }
        
        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .step-number-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .step-header h2 {
            color: var(--primary-green);
            margin: 0;
            font-size: 2.25rem;
        }
        
        .step-content {
            background: var(--light-bg);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-orange);
        }
        
        .step-content h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .step-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .step-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .step-features li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
        }
        
        .step-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Comparison Section */
        .comparison-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .comparison-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .comparison-table table {
            width: 100%;
            margin: 0;
        }
        
        .comparison-table th {
            background: var(--primary-green);
            color: white;
            padding: 1.5rem;
            font-weight: 600;
            text-align: center;
        }
        
        .comparison-table td {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-gray);
            text-align: center;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .comparison-table .negative {
            color: #dc2626;
        }
        
        .comparison-table .positive {
            color: var(--success-green);
            font-weight: 600;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .btn-white {
            background: white;
            color: var(--primary-green);
            border: none;
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255,255,255,0.3);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,255,255,0.4);
            color: var(--primary-green);
        }
        
        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-light:hover {
            background: white;
            color: var(--primary-green);
        }
        


        /* service */

         /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .service-detail {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 3rem;
            margin-bottom: 4rem;
            border-top: 5px solid var(--primary-green);
        }
        
        .service-detail:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .service-title h2 {
            color: var(--primary-green);
            font-size: 2.25rem;
            margin-bottom: 0.5rem;
        }
        
        .service-price {
            text-align: right;
        }
        
        .price-tag {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            line-height: 1;
        }
        
        .price-period {
            color: var(--medium-gray);
            font-size: 1rem;
        }
        
        .service-tagline {
            background: var(--light-bg);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-orange);
            margin-bottom: 2rem;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .service-content h3 {
            color: var(--primary-green);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .feature-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
        }
        
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .tier-info {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        
        .tier-info h4 {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .perfect-for {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        
        .perfect-for h4 {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        /* Add-ons Section */
        .addons-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .addons-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .addon-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-left: 4px solid var(--success-green);
        }
        
        .addon-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            border-left-color: var(--accent-orange);
        }
        
        .addon-icon {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }
        
        .addon-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .addon-price {
            color: var(--accent-orange);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .addon-card p {
            color: var(--medium-gray);
            margin-bottom: 0;
        }
        
        /* Comparison Table */
        .comparison-section {
            padding: 80px 0;
        }
        
        .comparison-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow-x: auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .comparison-table table {
            width: 100%;
            margin: 0;
            min-width: 600px;
        }
        
        .comparison-table th {
            background: var(--primary-green);
            color: white;
            padding: 1.5rem 1rem;
            font-weight: 600;
            text-align: center;
        }
        
        .comparison-table th:first-child {
            text-align: left;
        }
        
        .comparison-table td {
            padding: 1.25rem 1rem;
            border-bottom: 1px solid var(--border-gray);
            text-align: center;
        }
        
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table .check {
            color: var(--success-green);
            font-size: 1.5rem;
        }
        
        .comparison-table .cross {
            color: #dc2626;
            font-size: 1.5rem;
        }
        

        /* Result */

         /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        /* Case Study Section */
        .case-studies {
            padding: 80px 0;
        }
        
        .case-study {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-left: 6px solid var(--primary-green);
        }
        
        .case-study:nth-child(even) {
            border-left-color: var(--accent-orange);
        }
        
        .case-study-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .case-study-title h2 {
            color: var(--primary-green);
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .case-study-meta {
            color: var(--medium-gray);
            font-size: 0.95rem;
        }
        
        .case-study-badge {
            background: var(--light-bg);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-green);
        }
        
        .case-study-section {
            margin-bottom: 2rem;
        }
        
        .case-study-section h3 {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .case-study-section h3 i {
            margin-right: 0.5rem;
            color: var(--accent-orange);
        }
        
        .case-study-section p {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .result-box {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border-top: 3px solid var(--success-green);
        }
        
        .result-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .result-label {
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        .testimonial-box {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 2rem;
            font-style: italic;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            margin-top: 1rem;
            font-style: normal;
            font-weight: 600;
            opacity: 0.9;
        }
        
        .solution-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }
        
        .solution-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
        }
        
        .solution-list li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-orange);
            font-weight: bold;
            font-size: 1.3rem;
        }



        /* about */

           /* Story Section */
        .story-section {
            padding: 80px 0;
        }
        
        .story-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 2rem;
        }
        
        .story-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .highlight-box {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent-orange);
            margin: 2rem 0;
            font-size: 1.15rem;
            font-weight: 500;
        }
        
        /* Philosophy Section */
        .philosophy-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .philosophy-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid var(--primary-green);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            border-top-color: var(--accent-orange);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }
        
        .value-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        
        .value-card p {
            color: var(--medium-gray);
            margin-bottom: 0;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
        }
        
        .team-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: var(--medium-gray);
        }
        


        /* pricing */

          /* Pricing Cards */
        .pricing-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .pricing-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 5px solid var(--primary-green);
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .pricing-card.popular {
            border-top-color: var(--accent-orange);
            transform: scale(1.05);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-orange);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .pricing-card h3 {
            color: var(--primary-green);
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .price-period {
            color: var(--medium-gray);
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .best-for {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        
        .features-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid var(--border-gray);
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .tier-note {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--medium-gray);
            margin-top: 1rem;
        }
        
        /* Add-ons Section */
        .addons-section {
            padding: 80px 0;
        }
        
        .addons-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .addon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .addon-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        height: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
        border-left: 4px solid var(--success-green);
        text-align: center;
        }



        
        
        .addon-item:hover {
            border-left-color: var(--accent-orange);
            transform: translateX(5px);
        }
        
        .addon-item h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }
        
        .addon-price {
            color: var(--accent-orange);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .faq-section h2 {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 8px !important;
            overflow: hidden;
        }
        
        .accordion-button {
            background: white;
            color: var(--primary-green);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 1.25rem 1.5rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-green);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-green);
        }
        
        .accordion-body {
            padding: 1.5rem;
            background: white;
        }









          /* Final CTA */
    .final-cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
        color: white;
        text-align: center;
    }

    .final-cta-section h2 {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .final-cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .cta-note {
        font-size: 0.95rem;
        margin-top: 1.5rem;
        opacity: 0.85;
    }





     .service-badge {
        display: inline-block;
        background: var(--accent-orange);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1.35rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .hero-pricing {
        margin: 2rem 0;
    }

    .price-large {
        font-size: 3rem;
        font-weight: 800;
        color: white;
    }

    .price-period {
        font-size: 1.25rem;
        opacity: 0.9;
    }



      /* Authority Building - Case Study Section */
    .case-study-section {
        padding: 80px 0;
        background: var(--light-bg);
    }

    .featured-case-study {
        background: white;
        padding: 3rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .featured-case-study.premium-case {
        border: 3px solid #d4af37;
    }

    .case-study-tag {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .featured-case-study h3 {
        color: var(--primary-green);
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .case-meta {
        color: var(--medium-gray);
        margin-bottom: 2rem;
    }

    .case-challenge,
    .case-solution {
        margin-bottom: 2rem;
    }

    .case-challenge h4,
    .case-solution h4 {
        color: var(--primary-green);
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .case-results-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .result-metric {
        background: var(--light-bg);
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        border-top: 3px solid var(--success-green);
    }

    .result-metric.premium-metric {
        border-top-color: #d4af37;
    }

    .metric-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--accent-orange);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .metric-label {
        color: var(--dark-gray);
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .metric-period {
        color: var(--medium-gray);
        font-size: 0.85rem;
    }

    .case-testimonial {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white;
        padding: 2rem;
        border-radius: 12px;
        font-style: italic;
    }

    .case-testimonial.premium-testimonial {
        background: linear-gradient(135deg, #d4af37, #c9a747);
    }

    .case-testimonial p {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .testimonial-author {
        font-style: normal;
        font-weight: 600;
        opacity: 0.9;
    }






    /* faq addtional css */


    /* FAQ Enhancements for Long Content */
.accordion-body {
    line-height: 1.8;
    color: var(--dark-gray);
}

.accordion-body strong {
    color: var(--primary-green);
}

.accordion-body hr {
    border: none;
    border-top: 2px solid var(--border-gray);
    margin: 1.5rem 0;
}

.accordion-body table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.accordion-body table th {
    background: var(--primary-green);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.accordion-body table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.accordion-body table tr:last-child td {
    border-bottom: none;
}

.accordion-body table tr:nth-child(even) {
    background: var(--light-bg);
}

/* Comparison boxes inside FAQs */
.accordion-body .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

/* Mobile responsive for FAQ tables */
@media (max-width: 768px) {
    .accordion-body table {
        font-size: 0.9rem;
    }
    
    .accordion-body table th,
    .accordion-body table td {
        padding: 0.75rem 0.5rem;
    }
    
    .accordion-body .comparison-grid {
        grid-template-columns: 1fr;
    }
}