/* Accordion container */
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Button */
.accordion-button {
    width: 100%;
    padding: 14px 16px;
    background: #f7f7f7;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-button:hover {
    background: #ececec;
}

/* Content */
.accordion-collapse {
    display: none;
}

.accordion-body {
    padding: 14px 16px;
    background: #ffffff;
    font-size: 14px;
    color: #333;
}

        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
            max-width: 1140px
        }

        .main-navigation .navbar {
            width: 100%;
        }

        /* Navbar styles */
        .navbar {
            background-color: #2B343D;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            position: relative;
            width: 100%;
            top: 0;
            text-transform: uppercase;
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: top 0.3s ease, opacity 0.3s ease;
        }

        .navbar.is-fixed {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        /* Page introduction styles */
        .page-introduction {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 1;
            padding-top: 10px; /* Default gap for desktop */
            margin-top: 0; /* Ensure no extra margin */
        }

        /* Responsive adjustments for consistent gap */
        @media (max-width: 575.98px) {
            .page-introduction {
                padding-top: 10px; /* Smaller gap for mobile */
            }
        }

        @media (min-width: 576px) and (max-width: 767.98px) {
            .page-introduction {
                padding-top: 10px;
            }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .page-introduction {
                padding-top: 15px;
            }
        }

        @media (min-width: 992px) {
            .page-introduction {
                padding-top: 10px; /* Consistent with default */
            }
        }

        #kfa-nav {
            background-color: #2B343D;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .navbar-brand img {
            height: 80px;
            transition: transform 0.3s ease
        }

        .navbar-brand img:hover {
            transform: scale(1.05)
        }

        .navbar-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0
        }

        .nav-link {
            color: #FFF;
            text-decoration: none;
            font-weight: 500;
            padding: .5rem 1rem;
            transition: color 0.3s ease
        }

        .nav-link:hover, .nav-link.active {
            text-decoration: none;
            color: #DCBB87;
        }

        .navbar-collapse {
            flex-grow: 1;
            display: flex;
            justify-content: flex-end
        }

        .navbar-toggler {
            border: none;
            background: none;
            font-size: 1.25rem;
            padding: .25rem .75rem;
            display: none;
            color: #FFF
        }

        .navbar-toggler-icon {
            background-color: #FFF;
            display: inline-block;
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            content: "";
            background: no-repeat center center;
            background-size: 100% 100%
        }

        @media (max-width: 991px) {
            .navbar-toggler {
                display: block
            }

            .navbar-collapse {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--navbar-bg)
            }

            .navbar-collapse.show {
                display: block
            }

            .navbar-nav {
                flex-direction: column;
                padding: 1rem
            }
        }

        @media (min-width: 992px) {
            .navbar-nav {
                flex-direction: row
            }
        }

        @media (min-width: 1200px) {
            .container, .container-sm, .container-md, .container-lg, .container-xl {
                max-width: 1185px;
            }
        }

        .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 0;
            width: 100%;
            padding-right: calc(var(--bs-gutter-x) * .5);
            padding-left: calc(var(--bs-gutter-x) * .5);
            margin-right: auto;
            margin-left: auto
        }

        @media (min-width: 576px) {
            .container, .container-sm {
                max-width: 540px
            }
        }

        @media (min-width: 768px) {
            .container, .container-md, .container-sm {
                max-width: 720px
            }
        }

        @media (min-width: 992px) {
            .container, .container-lg, .container-md, .container-sm {
                max-width: 960px
            }
        }

        @media (min-width: 1200px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl {
                max-width: 1140px
            }
        }

        @media (min-width: 1400px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
                max-width: 1320px
            }
        }

        .g-0, .gx-0 {
            --bs-gutter-x: 0
        }

        .g-0, .gy-0 {
            --bs-gutter-y: 0
        }


        @media all and (min-width: 992px) {

            .navbar .nav-item .nav-link {
                margin-right: 10px;
                padding: 33px 10px 33px 0;
                font-size: 16px;
                font-weight: 500;
                color: #black;
                text-transform: uppercase;
            }

            .navbar .nav-item:last-child .nav-link {
                margin-right: 0;
            }

        }

        .page-introduction .page-title {
            font-weight: 500;
            margin-bottom: 10px;
            text-transform: capitalize;
        }

        .page-introduction .page-description {
            position: relative;
            z-index: 1;
            text-align: left !important;
        }

        .row {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 0;
            display: flex;
            flex-wrap: wrap;
            margin-top: calc(-1 * var(--bs-gutter-y));
            margin-right: calc(-.5 * var(--bs-gutter-x));
            margin-left: calc(-.5 * var(--bs-gutter-x));
        }

        .row > * {
            flex-shrink: 0;
            width: 100%;
            max-width: 100%;
            padding-right: calc(var(--bs-gutter-x) * .5);
            padding-left: calc(var(--bs-gutter-x) * .5);
            margin-top: var(--bs-gutter-y)
        }

        @media (min-width: 1200px) {
            .col-xl-8 {
                flex: 0 0 auto;
                width: 66.66666667%
            }

            .col-xl-4 {
                flex: 0 0 auto;
                width: 33.33333333%
            }
        }

        @media (min-width: 992px) {
            .col-lg-8 {
                flex: 0 0 auto;
                width: 66.66666667%
            }

            .col-lg-4 {
                flex: 0 0 auto;
                width: 33.33333333%
            }

            .col-md-6 {
                flex: 0 0 auto;
                width: 50%
            }

            .col-lg-3 {
                flex: 0 0 auto;
                width: 25%
            }
        }

        .ms-auto {
            margin-left: auto !important
        }

        .my-4 {
            margin-top: 1.5rem !important;
            margin-bottom: 1.5rem !important
        }


        .align-items-end {
            align-items: flex-end !important
        }

        .col-12 {
            flex: 0 0 auto;
            width: 100%
        }

        .text-center {
            text-align: center !important
        }


        .form-control {
            display: block;
            width: 100%;
            padding: .375rem .75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: var(--bs-body-color);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-color: var(--bs-body-bg);
            background-clip: padding-box;
            border: var(--bs-border-width) solid var(--bs-border-color);
            border-radius: var(--bs-border-radius);
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
        }

        @media (prefers-reduced-motion: reduce) {
            .form-control {
                transition: none
            }
        }

        .form-control[type=file] {
            overflow: hidden
        }

        .form-control[type=file]:not(:disabled):not([readonly]) {
            cursor: pointer
        }

        .form-control:focus {
            color: var(--bs-body-color);
            background-color: var(--bs-body-bg);
            border-color: #86b7fe;
            outline: 0;
            box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
        }

        .form-control::-webkit-date-and-time-value {
            min-width: 85px;
            height: 1.5em;
            margin: 0
        }

        .form-control::-webkit-datetime-edit {
            display: block;
            padding: 0
        }

        .form-control::-moz-placeholder {
            color: var(--bs-secondary-color);
            opacity: 1
        }

        .form-control::placeholder {
            color: var(--bs-secondary-color);
            opacity: 1
        }

        .form-control:disabled {
            background-color: var(--bs-secondary-bg);
            opacity: 1
        }

        .form-control::-webkit-file-upload-button {
            padding: .375rem .75rem;
            margin: -.375rem -.75rem;
            -webkit-margin-end: .75rem;
            margin-inline-end: .75rem;
            color: var(--bs-body-color);
            background-color: var(--bs-tertiary-bg);
            pointer-events: none;
            border-color: inherit;
            border-style: solid;
            border-width: 0;
            border-inline-end-width: var(--bs-border-width);
            border-radius: 0;
            -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
        }

        .form-control::file-selector-button {
            padding: .375rem .75rem;
            margin: -.375rem -.75rem;
            -webkit-margin-end: .75rem;
            margin-inline-end: .75rem;
            color: var(--bs-body-color);
            background-color: var(--bs-tertiary-bg);
            pointer-events: none;
            border-color: inherit;
            border-style: solid;
            border-width: 0;
            border-inline-end-width: var(--bs-border-width);
            border-radius: 0;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
        }

        @media (prefers-reduced-motion: reduce) {
            .form-control::-webkit-file-upload-button {
                -webkit-transition: none;
                transition: none
            }

            .form-control::file-selector-button {
                transition: none
            }
        }

        .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
            background-color: var(--bs-secondary-bg)
        }

        .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
            background-color: var(--bs-secondary-bg)
        }


        .service-details img {
            border-radius: 12px;
        }

        .service-single-list i {
            color: #DCBB87;
            margin-right: 10px;
        }

        .package-sidebar .search-area {
            margin-top: 0;
        }

        .package-sidebar .search-input {
            margin-bottom: 20px;
        }

        .package-sidebar h4 {
            color: #fff;
            margin-bottom: 30px;
        }

        .search-area {
            position: relative;
            margin-top: -80px;
            z-index: 1;
        }

        .search-form-wrapper {
            background: #1F2E3C;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
        }

        .search-form-wrapper .form-group {
            position: relative;
        }

        .search-form-wrapper .form-group label {
            color: #fff;
            margin-bottom: 7px;
        }

        .search-form-wrapper .form-group i {
            position: absolute;
            left: 12px;
            bottom: 15.5px;
            color: #DCBB87;
        }

        .search-form-wrapper .form-group .form-control {
            padding: 10px 10px 10px 35px;
            border-radius: 8px;
            border-color: #6C7592;
            background: #364350;
            color: #fff;
            box-shadow: none;
        }

        .search-form-wrapper .form-group .form-control::placeholder {
            color: #fff;
        }

        .search-form-wrapper .form-group .nice-select {
            width: 100%;
            height: 45px;
            line-height: 43px;
            border-radius: 8px;
            border-color: #6C7592;
            background: #364350;
            color: #fff;
            padding-left: 35px;
            font-size: 1rem;
            font-weight: 400;
        }

        .search-form-wrapper .form-group .nice-select:after {
            border-color: #fff;
            width: 9px;
            height: 9px;
            margin-top: -6.5px;
        }

        .search-form-wrapper .nice-select.open .list {
            border: none;
            background: #364350;
            border-radius: 10px;
            width: 100%;
            box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
        }

        .search-form-wrapper .form-group .nice-select-icon i {
            bottom: -30px;
        }

        @media all and (max-width: 991px) {
            .search-form-wrapper .search-input {
                margin-bottom: 25px;
            }
        }

        .widget {
            background: #fff;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
        }

        .widget .widget-title {
            color: #19232D;
            padding-bottom: 10px;
            margin-bottom: 30px;
            position: relative;
        }

        .widget .widget-title::before {
            position: absolute;
            content: '';
            width: 40px;
            border-bottom: 3px solid #DCBB87;
            bottom: 0;
            left: 0;
        }

        .widget .widget-title::after {
            position: absolute;
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 10px;
            bottom: -3px;
            left: 0px;
            background: #DCBB87;
        }

        .widget .search-form .form-control {
            padding: 10px 15px 10px 15px;
            border-radius: 10px;
            box-shadow: none;
        }

        .widget .search-form {
            position: relative;
        }

        .widget .search-form .form-control:focus {
            border-color: #DCBB87;
        }

        .widget .search-form button {
            position: absolute;
            right: 0;
            top: 0;
            padding: 10px 18px 6px 18px;
            background: transparent;
            border: none;
            color: #6C7C89;
        }

        .widget .category-list a {
            display: block;
            padding: 10px 0;
            font-weight: 500;
            border-bottom: 1px solid #eee;
            transition: all .5s ease-in-out;
        }

        .widget .category-list a:last-child {
            border-bottom: 0px;
        }

        .widget .category-list a:hover {
            padding-left: 10px;
            color: #DCBB87;
        }

        .widget .category-list a i {
            margin-right: 5px;
        }

        .widget .category-list a span {
            float: right;
        }

        .widget .recent-post-single {
            display: flex;
            justify-content: start;
            align-items: center;
            margin-bottom: 20px;
        }

        .widget .recent-post-img {
            margin-right: 20px;
        }

        .widget .recent-post-img img {
            border-radius: 10px;
            width: 100px;
        }

        .widget .recent-post-bio h6 {
            font-size: 16px;
            margin-bottom: 0;
        }

        .widget .recent-post-bio span {
            font-size: 14px;
        }

        .widget .recent-post-bio span i {
            margin-right: 5px;
        }

        .widget .recent-post-bio h6 a:hover {
            color: #DCBB87;
        }

        .widget .social-share-link a {
            width: 35px;
            height: 35px;
            line-height: 31px;
            border: 2px solid #19232D;
            color: #19232D;
            text-align: center;
            border-radius: 50px;
            margin-right: 5px;
            transition: all .5s ease-in-out;
        }

        .widget .social-share-link a:hover {
            background: #DCBB87;
            border-color: #DCBB87;
            color: #fff;
        }

        .widget .tag-list a {
            background: #F5FBFF;
            padding: 5px 18px;
            margin-bottom: 10px;
            margin-right: 10px;
            display: inline-block;
            border-radius: 50px;
            transition: all .5s ease-in-out;
        }

        .widget .tag-list a:hover {
            background-color: #DCBB87;
            color: #fff;
        }

        .widget-download a {
            display: block;
            width: 100%;
            padding: 10px 20px;
            border-radius: 10px;
            border: 2px solid #DCBB87;
            margin-bottom: 20px;
            color: #19232D;
        }

        .widget-download a i {
            margin-right: 10px;
        }

        .widget-download a:hover {
            color: #DCBB87;
        }

        .widget-banner img {
            border-radius: 15px;
            width: 100%;
        }

        .widget-banner {
            position: relative;
        }

        .widget-banner::before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            left: 0px;
            top: 0px;
            background: rgba(31, 46, 60, .6);
            border-radius: 15px;
        }

        .banner-content {
            position: absolute;
            left: 0;
            bottom: 20px;
        }

        .banner-content h2 {
            padding: 20px;
            display: block;
            font-size: 40px;
            line-height: 50px;
            font-family: 'Playfair Display', sans-serif;
            color: #ffffff;
            font-weight: 700;
            text-shadow: 5px 9px rgb(0 0 0 / 10%);
        }

        .banner-content h2 span {
            color: #DCBB87;
        }

        @media all and (max-width: 991px) {
            .search-form-wrapper .search-input {
                margin-bottom: 25px;
            }
        }

        .search-btn {
            width: 100%;
            border: none;
            background: #DCBB87;
            color: #1F2E3C;
            border-radius: 8px;
            font-weight: 500;
            padding: 10.5px 0;
            transition: all .5s ease-in-out;
        }

        .search-btn i {
            margin-right: 5px;
        }

        .search-btn:hover {
            background: #364350;
            color: #fff;
        }

        .footer-area {
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            z-index: 1;
        }

        .footer-area::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            opacity: .92;
            background: #19232D;
            z-index: -1;
        }

        .footer-widget-box {
            margin-bottom: 20px;
        }

        .footer-widget {
            position: relative;
            z-index: 1;
        }

        .footer-logo img {
            width: 180px;
            margin-bottom: 30px;
        }

        .copyright {
            border-top: 2px dashed rgba(255, 255, 255, .1);
            padding: 20px 0;
        }

        .copyright .copyright-text {
            text-align: center;
            color: #f5faff;
            margin-bottom: 0px;
            font-size: 16px;
        }

        .copyright .copyright-text a {
            color: #DCBB87;
            font-weight: 600;
        }

        .footer-widget-title {
            color: #fff;
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 30px;
            z-index: 1;
        }

        .footer-widget-title::before {
            position: absolute;
            content: '';
            z-index: -1;
            width: 40px;
            height: 2px;
            background-color: #DCBB87;
            bottom: 0;
            left: 0;
        }

        .footer-widget-title::after {
            position: absolute;
            content: '';
            z-index: -1;
            width: 8px;
            height: 8px;
            border-radius: 5px;
            background-color: #DCBB87;
            bottom: -3px;
            left: 0px;
        }

        .footer-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-list li a {
            color: #fff;
            transition: all .5s ease-in-out;
        }

        .footer-list li a:hover {
            padding-left: 10px;
            color: #DCBB87;
        }

        .footer-widget-box p {
            color: #fff;
            padding-right: 18px;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .footer-social li a i {
            height: 30px;
            width: 30px;
            line-height: 35px;
            text-align: center;
            color: #fff;
            transition: all .5s ease-in-out;
        }

        .footer-contact li {
            position: relative;
            display: flex;
            justify-content: start;
            align-items: center;
            color: #f5faff;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .footer-contact li a {
            color: #f5faff;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

        .footer-contact li i {
            width: 15px;
            height: 30px;
            font-size: 18px;
            margin-right: 15px;
            border-radius: 5px;
            line-height: 31px;
            text-align: center;
            -webkit-transition: 0.3s;
            transition: 0.3s;
            color: #DCBB87;
        }

        @media all and (max-width: 1199px) {
            .footer-widget-box {
                margin-bottom: 50px;
            }
        }

        @media all and (max-width: 991px) {
            .copyright .copyright-text {
                text-align: left;
            }
        }

        @media all and (max-width: 767px) {
            .footer-widget-wrapper {
                padding-bottom: 0px;
            }
        }

        .fa-angle-double-up {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23008000" stroke="%23008000" stroke-width="20" fill-opacity="0.4" d="M99.9 227.1c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6L256 378.7l128.7-122.6c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0L256 333.7 149.3 227.1zm0 128c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6L256 506.7l128.7-122.6c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0L256 461.7 149.3 355.1z"/></svg>');
        }

        .fa, .fab, .fad, .fal, .far, .fas, .ekit-wid-con .fasicon, .ekit-wid-con .icon, .fasicon, .icon {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            display: inline-block;
            line-height: 1;
            width: 16px;
            height: 16px;
            background-size: contain;
            background-repeat: no-repeat;
            vertical-align: middle
        }

        .fa-facebook {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="white" d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg>');
        }

        .fa-instagram {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>')
        }

        .fa-linkedin {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"/></svg>')
        }

        .fa-x-twitter {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" stroke="white" stroke-width="20" fill-opacity="0.4" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.1L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>');
        }

        .fa-youtube {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="white" stroke="white" stroke-width="20" fill-opacity="0.4" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>');
        }

        .fa-whatsapp {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23008000" stroke="%23008000" stroke-width="20" fill-opacity="0.4" d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg>');
        }

        .fa-check {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="green" d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"/></svg>')
        }

        .fa-user {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" stroke="white" stroke-width="20" fill-opacity="0.4" d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm95.8 32.6C285.4 263.4 257 256 224 256s-61.4 7.4-95.8 32.6C58.1 340.2 16 414.3 16 496c0 8.8 7.2 16 16 16h384c8.8 0 16-7.2 16-16 0-81.7-42.1-155.8-112.2-207.4z"/></svg>')
        }

        .fa-envelope {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"/></svg>')
        }

        .fa-phone {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"/></svg>');
            transform: rotate(90deg);
        }

        .fa-angle-double-right {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" stroke="black" stroke-width="20" fill-opacity="0.4" d="M284.9 412.1c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6L378.7 256 262.3 122.6c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l128 128c6.2 6.2 6.2 16.4 0 22.6l-128 128zm-128-128c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6L250.7 256 134.3 122.6c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l128 128c6.2 6.2 6.2 16.4 0 22.6l-128 128z"/></svg>');
        }

        .fa-bars {
            background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox=%270 0 30 30%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath stroke=%27%23FFFFFF%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E');
            width: 32px !important;
            height: 32px !important;
        }

        .fa-location {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="white" d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"/></svg>')
        }

        a {
            color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
            text-decoration: underline
        }

        a:hover {
            --bs-link-color-rgb: var(--bs-link-hover-color-rgb)
        }

        a:not([href]):not([class]), a:not([href]):not([class]):hover {
            color: inherit;
            text-decoration: none
        }

        img, svg {
            vertical-align: middle
        }

        ol, ul {
            padding-left: 2rem
        }

        dl, ol, ul {
            margin-top: 0;
            margin-bottom: 1rem
        }

        ol ol, ol ul, ul ol, ul ul {
            margin-bottom: 0
        }

        *, *:before, *:after {
            box-sizing: inherit;
        }

        * {
            scroll-behavior: inherit !important;
        }

        html, body {
            height: auto;
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        body {
            font-size: 16px;
            color: #1b1c1e;
            line-height: 1.5em;
            font-weight: 400;
            background: #ffffff;
            -webkit-font-smoothing: antialiased;
            -moz-font-smoothing: antialiased;
            font-family: 'Roboto', sans-serif;
        }

        a {
            color: blue;
            display: inline-block;
            text-decoration: none;
        }

        a:active, a:focus, a:hover {
            outline: none;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
        }

        a:hover {
            color: #DCBB87;
        }

        ul {
            margin: 0;
            padding: 0;
        }

        li {
            list-style: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: normal;
            line-height: 1.25em;
            margin: 0px 0px 15px;
            font-family: 'DM Serif Display', serif;
        }

        /* Base heading styles (apply to both hX and hX.text-center) */
        h1, h1.text-center {
            font-size: clamp(1.75rem, 2.5vw + 0.5rem, 3rem);
            letter-spacing: 0.05em;
            font-weight: 700;
            transition: font-size 0.3s ease, letter-spacing 0.3s ease;
        }

        h2, h2.text-center {
            font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
            letter-spacing: 0.05em;
            font-weight: 700;
            transition: font-size 0.3s ease, letter-spacing 0.3s ease;
        }

        h3, h3.text-center {
            font-size: clamp(1.25rem, 1.8vw + 0.4rem, 2rem);
            letter-spacing: 0.05em;
            font-weight: 700;
            transition: font-size 0.3s ease, letter-spacing 0.3s ease;
        }

        h4, h4.text-center {
            font-size: clamp(1rem, 1.6vw + 0.3rem, 1.75rem);
            letter-spacing: 0.04em;
            font-weight: 600;
            transition: font-size 0.3s ease, letter-spacing 0.3s ease;
        }

        h5, h5.text-center {
            font-size: clamp(0.9rem, 1.4vw + 0.2rem, 1.5rem);
            letter-spacing: 0.04em;
            font-weight: 600;
            transition: font-size 0.3s ease, letter-spacing 0.3s ease;
        }

        h6, h6.text-center {
            font-size: clamp(0.8rem, 1.2vw + 0.2rem, 1.25rem);
            letter-spacing: 0.04em;
            font-weight: 600;
            transition: font-size 0.3s ease, letter-spacing 0.3s ease;
        }

        /* Extra-small screens (<576px) */
        @media (max-width: 575.98px) {
            h1, h1.text-center {
                font-size: clamp(1.25rem, 2vw + 0.3rem, 1.5rem);
                letter-spacing: 0.03em;
            }

            h2, h2.text-center {
                font-size: clamp(1.1rem, 1.8vw + 0.2rem, 1.3rem);
                letter-spacing: 0.03em;
            }

            h3, h3.text-center {
                font-size: clamp(1rem, 1.6vw + 0.2rem, 1.2rem);
                letter-spacing: 0.03em;
            }

            h4, h4.text-center {
                font-size: clamp(0.9rem, 1.4vw + 0.1rem, 1.1rem);
                letter-spacing: 0.02em;
            }

            h5, h5.text-center {
                font-size: clamp(0.8rem, 1.2vw + 0.1rem, 1rem);
                letter-spacing: 0.02em;
            }

            h6, h6.text-center {
                font-size: clamp(0.7rem, 1vw + 0.1rem, 0.9rem);
                letter-spacing: 0.02em;
            }
        }

        /* Small screens (576px–767px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            h1, h1.text-center {
                font-size: clamp(1.5rem, 2.2vw + 0.4rem, 1.75rem);
                letter-spacing: 0.04em;
            }

            h2, h2.text-center {
                font-size: clamp(1.3rem, 2vw + 0.3rem, 1.5rem);
                letter-spacing: 0.04em;
            }

            h3, h3.text-center {
                font-size: clamp(1.1rem, 1.8vw + 0.2rem, 1.3rem);
                letter-spacing: 0.04em;
            }

            h4, h4.text-center {
                font-size: clamp(0.95rem, 1.6vw + 0.2rem, 1.2rem);
                letter-spacing: 0.03em;
            }

            h5, h5.text-center {
                font-size: clamp(0.85rem, 1.4vw + 0.1rem, 1.1rem);
                letter-spacing: 0.03em;
            }

            h6, h6.text-center {
                font-size: clamp(0.75rem, 1.2vw + 0.1rem, 1rem);
                letter-spacing: 0.03em;
            }
        }

        /* Medium screens (768px–991px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            h1, h1.text-center {
                font-size: clamp(1.6rem, 2.4vw + 0.4rem, 2rem);
            }

            h2, h2.text-center {
                font-size: clamp(1.4rem, 2.2vw + 0.3rem, 1.75rem);
            }

            h3, h3.text-center {
                font-size: clamp(1.2rem, 2vw + 0.2rem, 1.5rem);
            }

            h4, h4.text-center {
                font-size: clamp(1rem, 1.8vw + 0.2rem, 1.3rem);
            }

            h5, h5.text-center {
                font-size: clamp(0.9rem, 1.6vw + 0.1rem, 1.2rem);
            }

            h6, h6.text-center {
                font-size: clamp(0.8rem, 1.4vw + 0.1rem, 1.1rem);
            }
        }

        /* Large screens (≥992px) */
        @media (min-width: 992px) {
            h1, h1.text-center {
                font-size: clamp(1.75rem, 2.5vw + 0.5rem, 3rem);
            }

            h2, h2.text-center {
                font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
            }

            h3, h3.text-center {
                font-size: clamp(1.25rem, 1.8vw + 0.4rem, 2rem);
            }

            h4, h4.text-center {
                font-size: clamp(1rem, 1.6vw + 0.3rem, 1.75rem);
            }

            h5, h5.text-center {
                font-size: clamp(0.9rem, 1.4vw + 0.2rem, 1.5rem);
            }

            h6, h6.text-center {
                font-size: clamp(0.8rem, 1.2vw + 0.2rem, 1.25rem);
            }
        }

        /* Extra-large screens (≥1200px) */
        @media (min-width: 1200px) {
            h1, h1.text-center {
                font-size: clamp(2rem, 2.8vw + 0.5rem, 3.5rem);
            }

            h2, h2.text-center {
                font-size: clamp(1.75rem, 2.2vw + 0.5rem, 2.5rem);
            }

            h3, h3.text-center {
                font-size: clamp(1.5rem, 2vw + 0.4rem, 2.25rem);
            }

            h4, h4.text-center {
                font-size: clamp(1.25rem, 1.8vw + 0.3rem, 2rem);
            }

            h5, h5.text-center {
                font-size: clamp(1rem, 1.6vw + 0.2rem, 1.75rem);
            }

            h6, h6.text-center {
                font-size: clamp(0.9rem, 1.4vw + 0.2rem, 1.5rem);
            }
        }

        p {
            font-size: 15px;
            line-height: 1.7em;
            font-weight: 400;
            margin: 0 0 15px;
        }

        .img, img {
            max-width: 100%;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            height: auto;
        }

        label {
            color: #999;
            cursor: pointer;
            font-weight: 400;
        }

        *::-moz-selection {
            background: #DCBB87;
            color: #fff;
            text-shadow: none;
        }

        ::-moz-selection {
            background: #555;
            color: #fff;
            text-shadow: none;
        }

        ::selection {
            background: #555;
            color: #fff;
            text-shadow: none;
        }

        *::-moz-placeholder {
            color: #999;
            font-size: 16px;
            opacity: 1;
        }

        *::placeholder {
            color: #999;
            font-size: 16px;
            opacity: 1;
        }
    table {
      margin-left: auto;
      margin-right: auto;
      width: 80%; /* Optional: Set a width for the table */
      border-collapse: collapse; /* Optional: for better table appearance */
    }
    th, td {
      border: 1px solid black;
      padding: 8px;
      text-align: left;
    }
    th {
        color: white;
        background-color: #2B343D;
    }
    table tr:nth-child(odd) td {
      background-color: #f2f2f2; /* Light gray for odd rows */
    }

    table tr:nth-child(even) td {
      background-color: #ffffff; /* White for even rows */
    }