
        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f7f6;
        }

        .container {
            width: 85%;
            margin: 0 auto;
            max-width: 1200px;
        }

        h1, h2, h3 {
            color: #ff008c; /* Deep Blue */
            margin-bottom: 20px;
        }

        h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 40px;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #dd03a2; /* Cyan */
            border-radius: 2px;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        a {
            text-decoration: none;
            color: #dd03a2; /* Bright Blue */
            transition: color 0.3s ease;
        }

        a:hover {
            color: #ff008c;
        }

        .btn {
            display: inline-block;
            background-color: #dd03a2;
            color: #fff;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #ff008c;
            transform: translateY(-2px);
        }

        .section {
            padding: 80px 0;
        }

        /* Header */
        header {
            background-color: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8em;
            font-weight: bold;
            color: #ff008c;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-size: 1.1em;
            font-weight: bold;
            color: #333;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #dd03a2;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255, 0, 138, 0.7), rgba(222, 4, 163, 0.7)), url('../img/hero.jpg') no-repeat center center/cover;
            height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.5em;
            margin-bottom: 30px;
            color: #f8f9fa;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }

        .hero .btn {
            background-color: #f79125; /* Green */
            font-size: 1.3em;
            padding: 15px 35px;
        }

        .hero .btn:hover {
            background-color: #f79125;
        }

        /* About Section */
        #about {
            background-color: #fff;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .about-text {
            flex: 1.5;
        }

        .about-text h2 {
            text-align: left; /* Align h2 to the left in this section */
        }

        .about-text h2::after {
            left: 0;
            transform: translateX(0);
        }

        /* Services Section */
        #services {
            background-color: #f4f7f6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-item {
            background-color: #fff;
            padding: 30px 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #dd03a2;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .service-item i {
            font-size: 3em;
            color: #dd03a2;
            margin-bottom: 20px;
        }

        .service-item h3 {
            margin-bottom: 15px;
            color: #ff008c;
        }

        /* Why Choose Us Section */
        #why-us {
            background-color: #e9ecef;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }

        .why-us-item {
            background-color: #fff;
            padding: 30px 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .why-us-item:hover {
            transform: translateY(-5px);
        }

        .why-us-item i {
            font-size: 2.5em;
            color: #f79125;
            margin-bottom: 15px;
        }

        .why-us-item h3 {
            margin-bottom: 10px;
            color: #ff008c;
        }

        /* Health Insurance Section */
        #health-insurance {
            background-color: #fff;
        }

        .insurance-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .insurance-image {
            flex: 1;
        }

        .insurance-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .insurance-text {
            flex: 1.5;
        }

        .insurance-text h2 {
            text-align: left;
        }

        .insurance-text h2::after {
            left: 0;
            transform: translateX(0);
        }

        /* Quote/Appointment Section */
        #appointment {
            background-color: #ff008c; /* Darker blue for contrast */
            color: #fff;
            text-align: center;
        }

        #appointment h2 {
            color: #fff;
            font-size: 2.8em;
        }

        #appointment h2::after {
            background-color: #f79125; /* Green underline */
        }

        #appointment .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .appointment-form-container, .newsletter-form-container {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px;
        }

        .appointment-form-container h3, .newsletter-form-container h3 {
            color: #fff;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #eee;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group input[type="date"],
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1em;
            background-color: #f8f9fa;
            color: #333;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input[type="checkbox"] {
            margin-right: 10px;
            accent-color: #f79125;
        }

        .appointment-form-container .btn,
        .newsletter-form-container .btn {
            background-color: #f79125; /* Green */
            width: 100%;
            padding: 15px;
            font-size: 1.2em;
        }

        .appointment-form-container .btn:hover,
        .newsletter-form-container .btn:hover {
            background-color: #f79125;
        }

        /* Testimonials Section */
        #testimonials {
            background-color: #f4f7f6;
        }

        .testimonial-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            padding: 40px 0;
        }

        .testimonial-item {
            text-align: center;
            padding: 0 20px;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
        }

        .testimonial-item.active {
            opacity: 1;
            position: relative; /* Ensures active is visible */
            z-index: 1;
        }

        .testimonial-item p {
            font-size: 1.3em;
            font-style: italic;
            color: #555;
            margin-bottom: 25px;
        }

        .testimonial-item .author {
            font-weight: bold;
            color: #ff008c;
            font-size: 1.1em;
        }

        .testimonial-item .author span {
            font-weight: normal;
            color: #333;
            font-size: 0.9em;
            display: block;
        }

        /* Modals (Privacy Policy, T&C, Newsletter Confirmation) */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1100; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
            backdrop-filter: blur(5px); /* Blur effect */
            -webkit-backdrop-filter: blur(5px); /* For Safari */
        }

        .modal-content {
            background-color: #fefefe;
            margin: 10% auto; /* 10% from the top and centered */
            padding: 30px;
            border-radius: 10px;
            width: 80%; /* Could be more or less, depending on screen size */
            max-width: 700px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .modal-header h2 {
            margin: 0;
            color: #ff008c;
            font-size: 2em;
            text-align: left;
        }

        .modal-header .close-btn {
            font-size: 2.5em;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-header .close-btn:hover,
        .modal-header .close-btn:focus {
            color: #333;
            text-decoration: none;
        }

        .modal-body {
            font-size: 1.1em;
            color: #333;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .modal-body ul {
            list-style: disc;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .modal-body li {
            margin-bottom: 10px;
        }

        /* Confirmation Message */
        .confirmation-message {
            display: none; /* Hidden by default */
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #f79125; /* Green */
            color: white;
            padding: 20px 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1200;
            font-size: 1.3em;
            text-align: center;
            animation: fadeOut 3s forwards; /* Fade out over 3 seconds */
        }

        @keyframes fadeOut {
            0% { opacity: 1; }
            80% { opacity: 1; }
            100% { opacity: 0; visibility: hidden; }
        }

        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 30px;
            font-size: 0.95em;
        }

        footer .container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-col h3 {
            color: #dd03a2;
            margin-bottom: 20px;
            font-size: 1.4em;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #ccc;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: #dd03a2;
        }

        .footer-col p {
            color: #ccc;
        }

        .footer-col .social-links a {
            font-size: 1.5em;
            margin-right: 15px;
            color: #ccc;
        }

        .footer-col .social-links a:hover {
            color: #dd03a2;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .container {
                width: 90%;
            }

            h2 {
                font-size: 2.2em;
            }

            .hero h1 {
                font-size: 3em;
            }

            .hero p {
                font-size: 1.3em;
            }

            .about-content, .insurance-content {
                flex-direction: column;
            }

            .about-image, .about-text, .insurance-image, .insurance-text {
                flex: none;
                width: 100%;
                text-align: center;
            }

            .about-text h2, .insurance-text h2 {
                text-align: center;
            }

            .about-text h2::after, .insurance-text h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .why-us-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            footer .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
            }

            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav ul li {
                margin: 5px 15px;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .hero .btn {
                font-size: 1.1em;
                padding: 12px 25px;
            }

            .modal-content {
                width: 90%;
                margin-top: 15%;
            }

            .modal-header h2 {
                font-size: 1.7em;
            }

            .modal-header .close-btn {
                font-size: 2em;
            }
        }

        @media (max-width: 576px) {
            h2 {
                font-size: 1.8em;
            }

            .hero {
                height: 50vh;
            }

            .hero h1 {
                font-size: 2em;
            }

            .hero p {
                font-size: 1em;
            }

            .services-grid, .why-us-grid {
                grid-template-columns: 1fr;
            }

            #appointment .container {
                flex-direction: column;
            }

            .appointment-form-container, .newsletter-form-container {
                max-width: 100%;
            }

            footer .container {
                grid-template-columns: 1fr;
            }
        }
   