        :root {
            --light-blue: #D1E8FF;
            --dark-blue: #0B3C5D;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        h2 {
            color: #092b42;
        }


        /* Navbar Background & Layout */
        .navbar {
            padding: 1rem 0;
            background-color: #D1E8FF;
        }

        .navbar-brand {
            padding: 1;
        }


        .logo-img {
            height: 100px;
            width: auto;
            transition: all 0.3s ease;
        }

        @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
            .logo-img {
                height: 45px;
            }
        }

        /* Hover effect */
        .navbar-brand:hover .logo-img {
            opacity: 0.9;
            transform: scale(1.05);
        }

        .navbar-brand span {
            color: var(--dark-blue);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark-blue);
            margin: 0 0.5rem;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            color: var(--dark-blue);
            transition: width 0.3s ease;
        }
        .nav-link:hover {
            color: var(--dark-blue);
        }

        /* Dropdown Menu Styling */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu {
            border: none;
            border-radius: 8px;
            padding: 10px 0;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: white;
            animation: fadeIn 0.4s ease-in-out;
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-item {
            padding: 8px 20px;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .dropdown-item:hover,
        .dropdown-item:focus {
            background-color: rgba(3, 74, 177, 0.05);
            color: #092b42;
            padding-left: 25px;
        }

        .dropdown-item:hover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #092b42;
        }

        .dropdown-toggle::after {
            transition: transform 0.3s ease;
        }

        .nav-link.dropdown-toggle:hover {
            color: #092b42 !important;
        }

        .nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
            transform: rotate(-180deg);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 991.98px) {
            .dropdown-menu {
                box-shadow: none;
                border-left: 3px solid #092b42;
                border-radius: 0;
                margin-top: 0;
                margin-left: 15px;
                animation: none;
            }

            .dropdown-item {
                padding: 8px 15px;
            }

            .dropdown-item:hover {
                padding-left: 20px;
            }
        }
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(11, 60, 93, 0.7), rgba(11, 60, 93, 0.7)),
                url(https://i.pinimg.com/474x/22/02/44/2202443fb13964cd7cec8f1fa99abc63.jpg);
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .hero-content {
            max-width: 600px;
        }

        /* Counter Section */
        .counter-section {
            background-color: var(--light-blue);
            padding: 80px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter {
            font-size: 48px;
            font-weight: bold;
            color: var(--dark-blue);
        }

        /* Services Section */
        .services-section {
            background-color: var(--dark-blue);
            padding: 80px 0;
            color: var(--white);
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            color: var(--dark-blue);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--dark-blue);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--primary);
            transform: scale(1.1);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .feature-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 40px;
            color: var(--dark-blue);
            margin-bottom: 20px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .feature-icon:hover {
            transform: scale(1.2);
            color: var(--light-blue);
            background-color: #092b42;
        }


        /* Testimonials */
        .testimonials-section {
            background-color: var(--light-blue);
            padding: 80px 0;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(11, 60, 93, 0.6);
            border-radius: 50%;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: rgba(11, 60, 93, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            width: 20px;
            height: 20px;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }

        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .form-control:focus {
            border-color: var(--dark-blue);
            box-shadow: 0 0 0 0.25rem rgba(11, 60, 93, 0.25);
        }

        .btn-light {
            color: #D1E8FF;
            background-color: #092b42;
            border-color: #D1E8FF;
        }

        .btn-light:hover {
            color: #092b42;
            background-color: #D1E8FF;
            border-color: #092b42;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--light-blue);
            padding: 80px 0;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(11, 60, 93, 0.25);
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            margin: 0 15px;
        }

        .footer-links a:hover {
            color: var(--light-blue);
        }

        .social-icons a {
            color: var(--white);
            font-size: 20px;
            margin: 0 10px;
        }

        .social-icons a:hover {
            color: var(--light-blue);
        }

        .back-to-top {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: var(--dark-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            border: 2px solid var(--white);
            cursor: pointer;
        }

        .back-to-top:hover {
            background-color: var(--light-blue);
            color: var(--dark-blue);
        }

        footer h5 {
            color: #ffffff;
            font-size: 1.25rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        footer ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        footer ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
        }

        footer ul li a:hover {
            color: #D1E8FF;
            /* Light blue on hover */
            padding-left: 5px;
        }

        /* Responsive Styles */
        @media (max-width: 991.98px) {
            #sidebar {
                margin-left: -250px;
            }

            #sidebar.active {
                margin-left: 0;
            }

            #content {
                margin-left: 0;
            }

            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
        }

        /* about page */
        /* Hero Section */
        .about-hero {
            background: linear-gradient(rgba(11, 60, 93, 0.7), rgba(11, 60, 93, 0.7)),
                url(https://i.pinimg.com/736x/e1/b9/da/e1b9da526a45a248c4a10f2f781a8c2d.jpg);
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        /* Mission Section */
        .mission-section {
            background-color: var(--light-blue);
            padding: 80px 0;
        }

        .col-lg-6 img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .col-lg-6 img:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        /*ABout me*/
        .aboutMe-section {
            padding: 80px 0;
        }

        .col-lg-6 img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .col-lg-6 img:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }


        /* Team Section */
        .team-section {
            padding: 80px 0;
        }

        .team-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
        }

        /* Values Section */
        .values-section {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 80px 0;
        }

        .value-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
        }

        .value-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--light-blue);
        }

        /* History Section */
        .history-section {
            padding: 80px 0;
            background-color: var(--light-blue);
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--dark-blue);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: var(--white);
            border: 4px solid var(--dark-blue);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .left {
            left: 0;
            text-align: right;
        }

        .right {
            left: 50%;
            text-align: left;
        }

        .left::after {
            right: -12px;
        }

        .right::after {
            left: -12px;
        }

        .timeline-content {
            padding: 20px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Timeline */
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::after {
                left: 18px;
            }

            .left,
            .right {
                left: 0;
                text-align: left;
            }
        }

        /* SERVICES PAGE */
        /* Hero Section */
        .services-hero {
            background: linear-gradient(rgba(11, 60, 93, 0.7), rgba(11, 60, 93, 0.7)),
                url(https://i.pinimg.com/736x/e1/b9/da/e1b9da526a45a248c4a10f2f781a8c2d.jpg);
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        /* Services Section */
        .services-section1 {
            padding: 80px 0;
            background-color: linear-gradient(rgba(11, 60, 93, 0.7), rgba(11, 60, 93, 0.7));
        }

        .service-card {
            border-radius: 15px;
            padding: 30px;
            background-color: #ffffff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 45px;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .service-category {
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 15px;
            color: #555;
        }

        .special-service-card {
            background-color: #f8f9fa;
            border: 2px dashed var(--primary);
            border-radius: 12px;
        }

        .special-service-card .special-icon {
            color: var(--white);
        }

        .special-service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        /* Special Service Card */
        .special-service-card {
            background-color: var(--dark-blue);
            color: var(--white);
            border-radius: 15px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            transition: all 0.3s ease;
        }

        .special-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .special-icon {
            font-size: 50px;
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--light-blue);
            padding: 80px 0;
            text-align: center;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .process-step {
            text-align: center;
            padding: 20px;
            margin-bottom: 20px;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background-color: var(--light-blue);
            color: var(--dark-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-arrow {
            font-size: 30px;
            color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .loop-arrow i {
            transform: rotate(-90deg);
        }

        @media (max-width: 768px) {
            .process-arrow {
                transform: rotate(90deg);
                padding: 10px 0;
            }

            .loop-arrow {
                display: none;
            }
        }

        .btn-outline-primary {
            background-color: #092b42;
            text-decoration: none;
            border-color: #092b42;
            color: #FFFFFF;
        }

        .btn-outline-primary:hover {
            background-color: #D1E8FF;
            color: #092b42 !important;
            border-color: #092b42;
        }

        .btn-outline-primary1 {
            background-color: #D1E8FF;
            color: #092b42;
        }

        .btn-outline-primary1:hover {
            background-color: #D1E8FF;
            color: #092b42;
        }

        /*CONTACT PAGE*/
        /* Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(11, 60, 93, 0.7), rgba(11, 60, 93, 0.7)),
                url(https://i.pinimg.com/736x/e1/b9/da/e1b9da526a45a248c4a10f2f781a8c2d.jpg);
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }

        .contact-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .contact-icon {
            font-size: 40px;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        /* Form Styles */
        .contact-form {
            background-color: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control:focus {
            border-color: var(--dark-blue);
            box-shadow: 0 0 0 0.25rem rgba(11, 60, 93, 0.25);
        }

        .btn-primary {
            color: #D1E8FF;
            background-color: #092b42;
            border-color: #D1E8FF;
        }

        .btn-primary:hover {
            background-color: #D1E8FF;
            color: #092b42;
            border-color: #D1E8FF;
        }

        .btn .btn-primary1 {
            background-color: #092b42;
            color: white;
            border-radius: 7px;
        }

        .btn-primary1:hover {
            background-color: transparent;
            color: #092b42;
            border-color: #092b42;
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background-color: var(--light-blue);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(11, 60, 93, 0.25);
        }

        /* Hours Section */
        .hours-section {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 80px 0;
        }

        .hours-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }

        .hours-icon {
            font-size: 40px;
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        /* Bipolar Disorder Page Specific Styles */
        .bipolar-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.pinimg.com/1200x/27/f4/5d/27f45db4a3041d1d9b60b58f9f8b7b7e.jpg') no-repeat center center;
            background-size: cover;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }

        .symptom-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease;
            border-left: 4px solid #092b42;
        }

        .symptom-card:hover {
            transform: translateY(-5px);
        }

        .symptom-icon {
            color: var(--dark-blue);
            background-color: #e6f0f7;
            font-size: 22px;
            padding: 15px;
            border-radius: 50%;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .symptom-icon:hover {
            transform: scale(1.2);
            color: var(--light-blue);
            background-color: #092b42;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .treatment-approach {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .treatment-approach:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .treatment-approach h4 {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .treatment-approach h4 i {
            color: var(--primary);
            font-size: 20px;
            background-color: #f0f8ff;
            padding: 10px;
            border-radius: 50%;
            margin-right: 12px;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .treatment-approach:hover h4 i {
            transform: scale(1.2);
            background-color: var(--dark-blue);
            color: #fff;
        }



        .type-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

        .type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .type-card-header {
            background-color: #092b42;
            color: #ffffff;
            padding: 18px 20px;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .type-card-body {
            padding: 22px 24px;
            font-size: 1rem;
            line-height: 1.6;
            color: #333333;
        }


        .emergency-box {
            background-color: #fff8f8;
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            border-radius: 5px;
            margin-top: 30px;
        }

        /* ===== Contact Form Section Styles ===== */
        .contact1-section {
            background: linear-gradient(135deg, #092b42, #D1E8FF);
            padding: 60px 0;
            color: #fff;
        }

        .contact1-section .container {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            justify-content: space-between;
            gap: 2rem;
        }

        .contact1-info {
            flex: 1;
            min-width: 300px;
        }

        .contact1-form {
            background-color: #092b42;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            flex: 1;
            min-width: 300px;
            color: #ffffff;
        }

        .contact1-form h3 {
            text-align: center;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .contact1-form .form-control {
            border-radius: 8px;
            border: 1px solid #ccc;
            padding: 12px 16px;
            font-size: 1rem;
            margin-bottom: 20px;
            box-shadow: none;
            transition: border-color 0.3s ease;
        }

        .contact1-form .form-control:focus {
            border-color: #092b42;
            box-shadow: 0 0 0 0.15rem rgba(60, 163, 128, 0.2);
        }

        .contact1-form .btn {
            width: 100%;
            border-radius: 30px;
            padding: 12px;
            font-weight: 600;
            font-size: 1rem;
            background-color: #D1E8FF;
            border: none;
            color: #092b42;
            transition: background-color 0.3s ease;
        }

        .contact1-form .btn:hover {
            background-color: white;
        }

         /* Terms Page Specific Styles */
        .terms-hero {
            background: linear-gradient(#092b42, #D1E8FF), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .terms-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-top: -50px;
            margin-bottom: 50px;
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            color: #092b42;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .terms-section h3 {
            color: #092b42;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        
        .terms-list {
            padding-left: 20px;
        }
        
        .terms-list li {
            margin-bottom: 10px;
        }
        
        .last-updated {
            font-style: italic;
            color: #666;
            text-align: right;
            margin-top: 30px;
        }
        /* Privacy Policy Specific Styles */
        .privacy-hero {
            background: linear-gradient(#092b42, #D1E8FF), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40') no-repeat center center;
            background-size: cover;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .privacy-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-top: -50px;
            margin-bottom: 50px;
        }
        
        .privacy-section {
            margin-bottom: 30px;
        }
        
        .privacy-section h2 {
            color: #092b42;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .privacy-section h3 {
            color: #2c3e50;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        
        .privacy-list {
            padding-left: 20px;
        }
        
        .privacy-list li {
            margin-bottom: 10px;
        }
        
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #092b42;
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
        }
        
        .last-updated {
            font-style: italic;
            color: #666;
            text-align: right;
            margin-top: 30px;
        }
       .calendly-inline-widget {
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Make form match Calendly height on large screens */
@media (min-width: 992px) {
    .h-100 {
        min-height: 700px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Responsive styles for the Custom Contact Form infront of Calendly */
.custom-form-container {
    background-color: #063750;
    padding: 40px 32px;
    border-radius: 18px;
    min-height: 520px; /* Increased height */
    max-width: 550px;
    margin: 32px auto;
    color: white;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 8px 32px rgba(6, 55, 80, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-form-container h2 {
    color: #D1E8FF;
    text-align: center;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.custom-form-container .form-group {
    margin-bottom: 18px;
}

.custom-form-container input,
.custom-form-container textarea {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    background: white;
    color: #063750;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(11, 60, 93, 0.07);
    transition: background 0.2s, box-shadow 0.2s;
}

.custom-form-container input:focus,
.custom-form-container textarea:focus {
    background: white;
    outline: none;
    box-shadow: 0 0 0 2px #D1E8FF;
}

.custom-form-container textarea {
    resize: vertical;
    min-height: 120px;
}

.custom-form-container button {
    width: 100%;
    background-color: #D1E8FF;
    color: #063750;
    padding: 16px;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(11, 60, 93, 0.07);
}

.custom-form-container button:hover {
    background-color: #fff;
    color: #0B3C5D;
}

@media (max-width: 600px) {
    .custom-form-container {
        padding: 18px 8px;
        min-height: 420px;
    }
    .custom-form-container h2 {
        font-size: 1.3rem;
    }
}

        