
        /* --- 1. GLOBAL STYLES & RESET --- */
        :root {
            --primary-green: #27ae60;
            --primary-dark: #0a2540;
            --secondary-blue: #0056b3;
            --light-gray: #f4f7f6;
            --text-dark: #333;
            --text-light: #666;
            --white: #ffffff;
            --border-radius: 8px;
            --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            line-height: 1.2;
            color: var(--primary-dark);
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        /* --- 2. BUTTONS & CTA --- */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .btn-primary {
            background-color: var(--primary-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #219150;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: var(--secondary-blue);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: #004494;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-dark);
            color: var(--primary-dark);
        }

        .btn-outline:hover {
            background-color: var(--primary-dark);
            color: var(--white);
        }

        /* --- 3. HEADER & NAVIGATION --- */
        header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            animation: fadeInDown 0.8s ease-out;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        nav ul {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: var(--transition);
        }

        nav a:hover { color: var(--secondary-blue); }

        .header-cta { display: flex; gap: 10px; }
        .header-cta .btn { padding: 8px 16px; font-size: 0.9rem; }

        /* --- 4. HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, #f0f4f8 0%, #e6eef7 100%);
            text-align: center;
            padding: 120px 0;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .hero .sub-heading {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            font-weight: 600;
            color: var(--primary-green);
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* --- 5. ABOUT US PREVIEW SECTION --- */
        .about-preview { background: var(--white); }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 25px;
            font-size: 1.1rem;
        }

        .about-highlights {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            font-weight: 600;
        }

        .about-highlights span {
            background: var(--light-gray);
            padding: 10px 20px;
            border-radius: 50px;
            color: var(--primary-dark);
        }

        /* --- 6. WHY CHOOSE US SECTION --- */
        .why-us {
            background: var(--light-gray);
            text-align: center;
        }

        .why-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .why-item {
            background: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            min-width: 250px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
        }

        .why-item span { font-size: 1.2rem; }
        .why-us p { font-style: italic; margin-top: 20px; font-weight: 600; color: var(--secondary-blue); }

        /* --- 7. OUR SERVICES SECTION --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 25px;
            transition: var(--transition);
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card ul li {
            padding: 5px 0;
            border-bottom: 1px dotted #eee;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .service-card ul li:last-child { border-bottom: none; }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
            border-color: var(--secondary-blue);
        }

        .services-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* --- 8. TESTIMONIALS SECTION --- */
        .testimonials {
            background: var(--primary-dark);
            color: var(--white);
            text-align: center;
            overflow: hidden; /* Important for hiding overflow */
        }
        .testimonials h2 { color: var(--white); }

        .testimonial-scroller {
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .testimonial-track {
            display: inline-block;
            white-space: nowrap;
            animation: scrollText 30s linear infinite;
        }
        
        /* Pause on hover */
        .testimonial-scroller:hover .testimonial-track {
            animation-play-state: paused;
        }

        .testimonial-item {
            display: inline-block;
            width: 400px;
            white-space: normal;
            vertical-align: top;
            margin: 0 20px;
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(5px);
        }

        .stars { color: #ffd700; font-size: 1.2rem; margin-bottom: 10px; }
        .quote { font-style: italic; margin-bottom: 10px; font-size: 1rem; }
        .author { font-weight: 600; font-size: 0.9rem; }

        /* --- 9. FAQ SECTION --- */
        .faq { background: var(--white); }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--white);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }
        .faq-question:hover { background: var(--light-gray); }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--secondary-blue);
        }
        .faq-item.active .faq-question::after { content: '-'; }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fafafa;
        }

        .faq-answer p {
            padding: 0 20px 20px;
            margin: 0;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- 10. CONTACT FORM SECTION --- */
        .contact-form-section { background: var(--light-gray); }

        .form-wrapper {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            max-width: 700px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-blue);
        }

        textarea.form-control { resize: vertical; min-height: 120px; }

        .confirmation-message {
            display: none;
            background: #e8f5e9;
            color: #1b5e20;
            padding: 15px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            text-align: center;
            font-weight: 600;
            border: 1px solid #a5d6a7;
            animation: fadeIn 0.5s;
        }

        /* --- 11. NEWSLETTER SECTION --- */
        .newsletter { text-align: center; }
        .newsletter .form-wrapper { background: var(--primary-dark); color: var(--white); max-width: 600px; }
        .newsletter h2, .newsletter label { color: var(--white); }
        .newsletter .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
        }
        .newsletter .form-control::placeholder { color: rgba(255,255,255,0.6); }
        .newsletter .btn-primary { background-color: var(--primary-green); }
        .newsletter .confirmation-message {
            background: rgba(255,255,255,0.15);
            color: #a5d6a7;
            border: 1px solid #a5d6a7;
        }
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: left;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* --- 12. LEGAL MODULES --- */
        .legal { background: var(--light-gray); }
        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .legal-card {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary-blue);
        }
        .legal-card h3 { font-size: 1.3rem; margin-bottom: 10px; }

        /* --- 13. FOOTER --- */
        footer {
            background: var(--primary-dark);
            color: #cfd8dc;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            color: var(--white);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .footer-section p, .footer-section a {
            color: #cfd8dc;
            font-size: 0.9rem;
            margin-bottom: 8px;
            display: block;
        }

        .footer-section a:hover { color: var(--primary-green); }
        .social-links a { font-size: 1.2rem; margin-right: 15px; }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.85rem;
        }

        /* --- 14. ANIMATIONS (KEYFRAMES) --- */
        /* Base state for all animated elements */
        .animated-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Active state classes (toggled by JS) */
        .animate-fade-up {
            opacity: 1;
            transform: translateY(0);
        }
        
        .animate-bounce {
            opacity: 1;
            animation: bounce 1s;
            transform: translateY(0);
        }

        /* Keyframes */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scrollText {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); } /* Scrolls the first set of testimonials out */
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-15px);}
            60% {transform: translateY(-7px);}
        }

        /* --- 15. MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .header-content { flex-direction: column; gap: 15px; }
            nav ul { flex-wrap: wrap; justify-content: center; gap: 12px; }
            .header-cta { width: 100%; justify-content: center; }
            .hero h1 { font-size: 2.2rem; }
            .hero-features { flex-direction: column; gap: 10px; }
            .why-item { min-width: 100%; }
            .testimonial-item { width: 280px; }
        }

   