
        :root {
            --primary-green: #2d6a5a;
            --primary-green-light: #3d8a70;
            --primary-blue: #1e5a7a;
            --accent-orange: #e67e22;
            --accent-orange-hover: #d35400;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #555555;
            --border-color: #e0e0e0;
            --success: #27ae60;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        section {
            scroll-margin-top: 120px; /* Matches scroll-padding */
          }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

        p {
            margin-bottom: 1rem;
            color: var(--text-gray);
            font-size: clamp(0.9rem, 2vw, 1.1rem);
        }

        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-green-light);
        }

        /* Buttons */
        .btn-primary-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .btn-primary-cta:hover {
            background-color: var(--accent-orange-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: white;
        }

        .btn-secondary-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-secondary-cta:hover {
            background-color: var(--primary-green);
            color: white;
        }

        /* Navigation */
        nav {
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        
        .navbar > container-fluid.container-max {
            align-items: center;  
        }

        .navbar-brand{
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-right: 0.5rem;
            max-width: calc(100% - 72px);
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
            flex-shrink: 0;
        }
        
        .navbar-brand span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin-left: 1.5rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active::after {
            width: 100%;
        }

        .navbar-toggler {
            flex-shrink: 0;
            margin-left: 0.5rem;
            padding: 0.4rem 0.65rem;
            position: static;
            z-index: 1001;
          }
          
          @media (min-width: 992px) {
            .navbar-brand img {
              height: 32px;
            }

            .navbar-brand span {
                font-size: 0.95rem;
            }

            .navbar-toggler {
                padding: 0.35rem 0.55rem;
                margin-left: 0.35rem;
            }
          }

        /* Hero Section */
        .hero {
            background: #1e5a7a; /* fallback color */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 8rem 2rem;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: 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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,100 Q300,50 600,100 T1200,100 L1200,400 L0,400 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.5;
        }
*/      
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.35),
                rgba(0, 0, 0, 0.55)
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Arrows */
        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(0, 0, 0, 0.45);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .hero-arrow-left {
            left: 1.5rem;
        }

        .hero-arrow-right {
            right: 1.5rem;
        }

        .hero-arrow:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: translateY(-50%) scale(1.05);
        }

        .hero-arrow:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 2px;
        }

        /* On very small screens, tuck arrows in a bit */
        @media (max-width: 576px) {
            .hero-arrow-left {
                left: 0.75rem;
            }
            .hero-arrow-right {
                right: 0.75rem;
            }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
            padding: 2rem 2.5rem;
            background: rgba(0, 0, 0, 0.45);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            list-style: disc;
            list-style-position: inside;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin: 0 0 3rem 0;
            padding: 0;
            color: #e7911f;
            font-size: clamp(1rem, 3vw, 1.3rem);
            line-height: 1.6;
            opacity: 0.95;
            text-align: center;
        }
        
        .hero-subtitle li {
            margin: 0;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .hero-cta-group a {
            color: white;
        }

        /* Trust Indicators */
        .trust-indicators {
            background-color: var(--bg-light);
            padding: 4rem 2rem;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 1.5rem;
            align-items: stretch;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background-color: var(--bg-white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .trust-item-icon {
            font-size: 3rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .trust-item h3 {
            color: var(--primary-green);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .trust-item p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background-color: var(--bg-white);
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-header h2 {
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-orange);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .service-card p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .service-card .btn-secondary-cta {
            align-self: center;
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
        }

        /* Community Section */
        .community {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .community-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .community h2 {
            color: white;
            margin-bottom: 2rem;
        }

        .community-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
            color: #e7911f;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--bg-light);
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-section h2 {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Modal */
        .modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-backdrop.active {
            display: flex;
        }

        .modal-content-box {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            max-width: 600px;
            width: 95%;
            box-shadow: var(--shadow-lg);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-gray);
        }

        .modal-close:hover {
            color: var(--text-dark);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-reassurance {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .form-success {
            display: none;
            background-color: rgba(39, 174, 96, 0.1);
            border: 1px solid var(--success);
            color: var(--success);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .form-success.active {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-link {
                margin-left: 0;
                padding: 0.5rem 0;
            }

            .hero {
                padding: 4rem 1rem;
                min-height: 80vh;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-cta-group a {
                width: 100%;
            }

            .trust-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 2px;
        }

        button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Skip to main content link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent-orange);
            color: white;
            padding: 8px;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Utility Classes */
        .container-max {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        .mb-4 {
            margin-bottom: 2rem;
        }

        .opacity-90 {
            opacity: 0.9;
        }