
        /* CSS Reset and Global Styles */
:root {
    --primary-color: #1B9CFC; /* Sky Blue */
    --secondary-color: #55E6C1; /* Aqua */
    --accent-color: #54A0FF; /* Light Blue */
    --text-dark: #2C3A47;
    --text-light: #FFFFFF;
    --background-light: #DFF9FB; /* Soft Blue */
    --background-white: #FFFFFF;
    --font-main: 'Poppins', sans-serif;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--background-white);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        h1, h2, h3 {
            margin-bottom: 15px;
            font-weight: 700;
        }

        h2 {
            font-size: 2.2rem;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 40px;
        }

        h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-top: 20px;
        }

        p {
            margin-bottom: 15px;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s;
        }

        a:hover {
            color: #0056b3;
        }

        .cta-button, .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 10px 5px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            transition: background-color 0.3s, opacity 0.3s;
            text-align: center;
            cursor: pointer;
            border: none;
        }

        .primary-cta {
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        .primary-cta:hover {
            background-color: #0056b3;
            color: var(--text-light);
        }

        .secondary-cta {
            background-color: var(--secondary-color);
            color: var(--text-light);
        }
        .secondary-cta:hover {
            background-color: #218838;
            color: var(--text-light);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 23px;
        }
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        /* --- Header Section --- */
        .header {
            background-color: var(--background-white);
            border-bottom: 1px solid #e9ecef;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero.jpg') no-repeat center center/cover;
            color: var(--text-light);
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .hero-highlights {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .highlight-item {
            margin: 10px 15px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* --- Section Styling --- */
        section {
            padding: 60px 0;
        }

        .bg-light {
            background-color: var(--background-light);
        }

        .section-title-wrapper {
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: center;
        }
        .section-title-wrapper h3 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        .section-title-wrapper h2 {
            margin: 0;
        }


        /* --- About Us / Why Choose Us --- */
        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .about-content img {
            max-width: 400px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .about-text {
            flex: 1;
        }
        .vision-mission p {
            background-color: #e6f2ff;
            padding: 15px;
            border-left: 4px solid var(--primary-color);
            margin-bottom: 10px;
            border-radius: 4px;
        }

        .feature-list {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .feature-list li {
            background-color: var(--background-white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            font-weight: 600;
            transition: transform 0.3s;
            border-left: 3px solid var(--secondary-color);
        }
        .feature-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        /* --- Services --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-category {
            padding: 30px;
            background-color: var(--background-white);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: box-shadow 0.3s;
        }
        .service-category:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .service-category h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }

        .service-list {
            list-style: none;
            padding: 0;
        }

        .service-list li {
            padding: 8px 0;
            border-bottom: 1px dotted #e9ecef;
            font-size: 0.95rem;
        }
        .service-list li:last-child {
            border-bottom: none;
        }

        /* --- Testimonials --- */
        .testimonials {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 60px 0;
        }
        .testimonials h2 {
            color: var(--text-light);
        }

        .testimonial-grid {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .testimonial-card {
            background-color: var(--text-light);
            color: var(--text-dark);
            padding: 25px;
            border-radius: 8px;
            max-width: 350px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .testimonial-card .quote {
            font-style: italic;
            margin-bottom: 15px;
        }

        .testimonial-card .author {
            font-weight: 600;
            color: var(--secondary-color);
            display: block;
            margin-top: 10px;
        }
        .stars {
            color: gold;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* --- FAQ --- */
        .faq-item {
            border: 1px solid #dee2e6;
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            background-color: var(--background-light);
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 15px;
            border-top: 1px solid #dee2e6;
            background-color: var(--background-white);
            display: none; /* Controlled by JS/Toggle */
        }
        .faq-question:hover {
            background-color: #e9ecef;
        }
        .faq-question span {
            font-size: 1.2rem;
        }

        /* --- Contact Form --- */
        .contact-content {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        .contact-form-wrapper {
            flex: 2;
            padding: 30px;
            background-color: var(--background-light);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .contact-info {
            flex: 1;
            padding: 30px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 8px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-family: var(--font-main);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .confirmation-message {
            margin-top: 15px;
            padding: 10px;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            border-radius: 4px;
            display: none; /* Hide until submit */
        }
        .confirmation-message.show {
            display: block;
        }

        /* --- Newsletter Module --- */
        .newsletter {
            padding: 40px 0;
            text-align: center;
            background-color: #e6f2ff;
        }

        .newsletter h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: var(--background-white);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .newsletter-form .form-group {
            display: flex;
            gap: 15px;
        }
        .newsletter-form .form-group > * {
            flex: 1;
        }
        .checkbox-group {
            text-align: left;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        /* --- Legal Modules --- */
        .legal-section {
            padding: 40px 0;
        }
        .legal-section h2 {
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        .legal-content h4 {
            font-size: 1.1rem;
            margin-top: 15px;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        /* --- Footer Section --- */
        .footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 40px 0;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li a {
            color: #ccc;
            display: block;
            padding: 5px 0;
        }
        .footer-links ul li a:hover {
            color: var(--secondary-color);
        }

        .social-media a {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #ccc;
        }
        .social-media a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .nav-links {
                margin-top: 15px;
                justify-content: center;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .about-content {
                flex-direction: column;
            }
            .about-content img {
                max-width: 100%;
            }
            .contact-content {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .nav-links li {
                margin: 0 10px;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-links {
                margin-top: 15px;
            }
        }
    