          @font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular (1) (1).ttf') format('opentype');
  font-style: normal;
}
  
  :root {
            --primary-green: #00A651;
            --dark-green: #006837;
            --bg-light: #F7F9F8;
            --text-dark: #1C2B24;
            --text-muted: #5A6B63;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Gilroy';
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
.hero-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    background: url('../images/Untitled design (4).png') center center / cover no-repeat;
    cursor: pointer;
    display: block;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: 9 / 16;
        max-height: 100svh;
        background-image: url('../images/GR_mobile bANNER.png');
        background-position: center top;
    }
}

@media (min-width: 2560px) {
    .hero-banner {
        max-height: 100vh;
    }
}



        /* Trust Banner */
        .trust-banner {
            background: #EAF5EE;
            padding: 20px 0;
            border-bottom: 1px solid #D2E7DB;
        }
        .trust-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: center;
            gap: 15px;
        }
        .trust-item {
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-green);
        }

        /* Section Styling */
        .section {
            padding: 20px 10px;
        }
        .section-bg {
            background: var(--white);
        }
        .section-title {
              text-align: center;
    margin-bottom: 30px;
    padding: 0px 10px;
        }
        .section-title h2 {
            font-size: 32px;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        .section-title p {
            color: var(--text-muted);
        }

        /* Why Green Roads Grid */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .card {
            background: var(--white);
                padding: 10px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: transform 0.3s ease;
            border: 1px solid #ECEFEF;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .card h3 {
            font-size: 20px;
            color: var(--dark-green);
            margin-bottom: 15px;
        }
        .card p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* Process Steps */
        .process-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-top: 40px;
        }
        .step {
            text-align: center;
            position: relative;
            background: var(--bg-light);
                padding: 15px 20px;
            border-radius: 12px;
        }
        .step-num {
            background: var(--primary-green);
            color: var(--white);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 15px auto;
            font-weight: 600;
        }
        .step h4 {
            color: var(--dark-green);
            margin-bottom: 8px;
        }
        .step p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Featured Categories */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }
        .cat-card {
            background: var(--bg-light);
                padding: 10px 20px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #E2E8E5;
        }
        .cat-card h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
            font-size: 18px;
        }
        .cat-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .btn-secondary {
            font-size: 14px;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-light);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-green);
        }
        .faq-item h3 {
            font-size: 18px;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        .faq-item p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* About Section Blockquote Disclaimer */
        .compliance-note {
            background: #FFF9F0;
            border: 1px solid #FFE0B2;
            padding: 25px;
            border-radius: 12px;
            margin-top: 30px;
            font-size: 14px;
            color: #664D03;
        }

        /* Footer */
        footer {
          background: #111E18;
    color: #A3B8AE;
    padding: 30px 10px 30px 10px;
    font-size: 14px;
        }
        .footer-links {
            text-align: center;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #A3B8AE;
            text-decoration: none;
            margin: 0 15px;
        }
        .footer-links a:hover {
            color: var(--white);
        }
        .fda-disclaimer {
            border-top: 1px solid #22362C;
            padding-top: 30px;
            text-align: center;
            font-size: 12px;
            opacity: 0.7;
            max-width: 900px;
            margin: 0 auto;
        }
        .copyright {
            text-align: center;
            margin-top: 20px;
            font-size: 12px;
            opacity: 0.5;
        }
        
        
        @media (max-width:768px){
    .hero-banner{
        background-image:url('../images/GR_mobile bANNER.png');
    }
        }

        