* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: rgb(246, 251, 255);
}

/* Navigation Bar */
nav {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media (min-width: 769px) {
    nav {
        padding: 10px 40px;
    }
}

.logo {
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    width: 156px;
    height: 58px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 5px;
}

nav a {
    text-decoration: none;
    color: inherit;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s;
}

nav a img {
    width: 30px;
    height: 30px;
    margin-bottom: 1px;
}

nav a:hover {
    background-color: #c0ecfe;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s;
}

.dropdown-toggle img {
    width: 30px;
    height: 30px;
    margin-top: 5px;
}

.dropdown-toggle:hover {
    background-color: #c0ecfe;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    font-size: 14px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Mobile Menu */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

.menu-icon i {
    color: #333;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
    }

    nav ul {
        flex-direction: column;
        margin-top: 50px;
        width: 100%;
        padding-left: 0;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 1px 0;
        width: 100%;
    }

    nav a {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 10px;
    }

    nav a img {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: left;
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }

    .dropdown-toggle img {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .dropdown:last-child {
        display: none;
    }
}

/* Breadcrumb */
breadcrumb {
    display: block;
    margin: 10px 0;
}

breadcrumb ul {
    list-style: none;
    padding: 0;
    margin-left: 35px;
    display: flex;
    align-items: center;
}

breadcrumb li {
    margin-right: 5px;
    font-size: 0.9em;
}

breadcrumb li:not(:last-child):after {
    content: ">";
    margin-left: 5px;
}

breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Container Wrapper */
.main-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0.75rem auto;
    padding: 0 0.25rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Styles for the page content wrapper */
.page-content-wrapper {
    width: 92%;
    max-width: 1200px;
    margin: 0.75rem auto;
    padding: 0.25rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 10px 65px #00000012;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-content-wrapper:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Styles for the text section */
.text-section {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-section:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

/* Styles for the content inside text-section */
.page-content {
    line-height: 1.6;
    color: #333;
}

/* Styles for the new section above the existing layout */
.new-layout-section {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fff;
    box-shadow: 0px 10px 65px #00000012;
    border-radius: 20px;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.new-layout-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.new-layout-section .left-image {
    flex-shrink: 0;
    width: 460px;
    overflow: hidden;
    border-radius: 6px;
}

.new-layout-section .left-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 1px 25px 1px 25px;
    transition: transform 0.3s ease;
}

.new-layout-section .left-image img:hover {
    transform: scale(1.03);
}

.new-layout-section .right-content {
    flex-grow: 1;
    padding: 0.2rem;
}

.new-layout-section h2 {
    color: #0066cc;
    margin-bottom: 0.75rem;
    font-size: 1.5em;
}

.new-layout-section .content-image {
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

.new-layout-section .content-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.new-layout-section .content-image img:hover {
    transform: scale(1.03);
}

.new-layout-section .new-section-text {
    line-height: 1.6;
    color: #333;
}

/* Two Column Layout */
.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0;
    background: transparent;
    align-items: start;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Shared Box Styling (for content and form containers) */
.content-container {
    width: 100%;
    padding: 1.1rem;
}

/* Left Content Section */
.content-container.left-section {
    background: #fff;
    box-shadow: 0px 10px 65px #00000012;
    border-radius: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-container.left-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.left-section h1 {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

/* Right Section (Price Section) */
.content-container.right-section {
    background: #fff;
    box-shadow: 0px 10px 65px #00000012;
    border-radius: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-container.right-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.right-section {
    position: sticky;
    top: 20px;
    align-self: start;
    width: 100%;
    z-index: 5;
}

/* Query Form in Right Section */
.query-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.1rem;
    border-radius: 5px;
}

.query-form h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Price Display Section */
.price-display {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.starting-price {
    font-size: 0.8rem;
    color: #666;
}

.starting-price span {
    color: #999;
}

.offer-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1fa13a;
}

.per-adult {
    font-size: 0.7rem;
    color: #666;
}

.discount-badge {
    display: inline-block;
    padding: 0.1rem 0.2rem;
    background: #21b840;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

.offer-price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.send-query-btn {
    width: 100%;
    height: 40px;
    background: #2196F3;
    border-radius: 6px;
    padding: 4px 16px;
    border: 0px;
    outline: none;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    border-top: 1px solid #ddd; /* Line above the send query button */
    margin-top: 0.6rem; /* Space for the line */
}

.send-query-btn:hover {
    background: #1976D2;
}

.send-query-btn:active {
    transform: scale(0.98);
}

/* Updated Form Content Section (Right Section) with .form_container Styling */
.content-container.right-section:not(.page-layout .right-section) {
    max-width: 695px;
    margin: 20px auto;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0px 10px 65px #00000012;
    border-radius: 20px;
    position: relative;
}

/* Original Popup Form Styling (Unchanged) */
.form_container {
    max-width: 695px;
    margin: 20px auto;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0px 10px 65px #00000012;
    border-radius: 20px;
    position: relative;
}

.form_grp label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    color: #333;
}

.input_grp {
    position: relative;
}

.form_grp input {
    border: 1px solid #76C0FA;
    border-radius: 10px;
    height: 50px;
    outline: none;
    width: 100%;
    padding: 0px 15px;
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form_grp input:focus {
    border-color: #2196F3;
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.3);
}

.form_grp_row {
    gap: 20px;
}

.form_grp_row.d-flex {
    display: flex;
}

.form_grp.w-50 {
    width: 50%;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.errorfrm {
    display: none;
    color: #e63946;
    font-size: 12px;
    margin-top: 5px;
}

/* Quantity Section Styling (for Popup Form) */
.quantity_box_prnt {
    gap: 20px;
    display: flex;
    justify-content: space-between;
}

.quantity_wrapper-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    border: 1px solid #76C0FA;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quantity_wrapper-inline:hover {
    border-color: #2196F3;
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.2);
}

.quantity_box-inline {
    border: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background: transparent;
}

.quantity_box-inline input {
    border: 0;
    width: 100%;
    text-align: center;
    height: auto;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.qty_control {
    font-size: 14px;
    font-weight: 600;
    color: #2196F3;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease, transform 0.1s ease;
    padding: 5px 8px;
    line-height: 1;
}

.qty_control:hover {
    color: #0040cc;
}

.qty_control:active {
    transform: scale(0.9);
}

button.submit {
    height: 42px;
    background: #2196F3;
    border-radius: 7px;
    padding: 12px 12px;
    border: 0px;
    outline: none;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.submit:hover {
    background: #1976D2;
}

.d-flex {
    display: flex;
}

.d-inflex {
    display: inline-flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-overlay .form_container {
    margin: 0;
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-popup-btn:hover {
    color: #333;
}

/* Phone Input Styling (for Popup Form) */
.form_container .phone-input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    border: 1px solid #b3c8ff;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form_container .phone-input-wrapper:focus-within {
    border-color: #2196F3;
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.3);
}

.form_container .phone-input-wrapper select.country-code-select {
    flex: 0 0 6.5rem;
    height: 50px;
    padding: 0 1.5rem 0 0.5rem;
    border: none;
    border-right: 1px solid #e5e7eb;
    border-radius: 10px 0 0 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background-color: #ffffff;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    cursor: pointer;
    appearance: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.form_container .phone-input-wrapper select.country-code-select:focus {
    outline: none;
    background-color: #e8f0ff;
}

.form_container .phone-input-wrapper select.country-code-select:hover {
    background-color: #e8f0ff;
}

.form_container .phone-input-wrapper input {
    flex: 1;
    height: 50px;
    padding: 0 0.8rem 0 0.5rem;
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 15px;
    color: #333;
    background-color: transparent;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.form_container .phone-input-wrapper input:focus {
    outline: none;
    background-color: #f8fafc;
}

.form_container .phone-input-wrapper input:hover {
    background-color: #f8fafc;
}

.form_container .phone-input-wrapper input::placeholder {
    color: #8b9ed1;
    font-size: 0.9rem;
}

/* Responsive Adjustments for Popup Form */
@media (max-width: 768px) {
    .form_container {
        width: calc(100% - 20px);
        margin: 20px auto;
        padding: 15px 20px;
    }

    .form_container h4 {
        font-size: 20px;
    }

    .form_grp_row.d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .form_grp.w-50 {
        width: 100%;
    }

    .quantity_box_prnt {
        flex-direction: row;
        gap: 15px;
    }

    .quantity_wrapper-inline {
        width: 110px;
        height: 45px;
    }

    .quantity_box-inline {
        height: 35px;
        width: 45px;
    }

    .quantity_box-inline input {
        font-size: 14px;
    }

    .qty_control {
        font-size: 13px;
        padding: 4px 6px;
    }

    button.submit {
        height: 48px;
        font-size: 15px;
        padding: 10px 28px;
    }

    .form_container .phone-input-wrapper select.country-code-select {
        flex: 0 0 5.5rem;
        height: 45px;
        padding: 0 1.2rem 0 0.4rem;
        font-size: 14px;
        background-position: right 0.4rem center;
    }

    .form_container .phone-input-wrapper input {
        height: 45px;
        padding: 0 0.7rem 0 0.4rem;
        font-size: 14px;
    }

    .form_container .phone-input-wrapper input::placeholder {
        font-size: 0.85rem;
    }

    .popup-overlay .form_container {
        width: calc(90% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .form_container {
        width: calc(95% - 20px);
        padding: 10px 15px;
    }

    .popup-overlay .form_container {
        width: calc(95% - 20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-content-wrapper {
        width: 100%;
        margin: 0.75rem auto;
        padding: 0 0.25rem;
    }

    .page-content-wrapper {
        width: 100%;
        margin: 0.75rem auto;
        padding: 0.25rem;
        border-radius: 20px;
    }

    .text-section {
        padding: 0.75rem;
    }

    .new-layout-section {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .new-layout-section .left-image {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .new-layout-section .right-content {
        padding: 0;
    }

    .new-layout-section .content-image {
        margin-bottom: 0.75rem;
    }

    .page-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0.75rem auto;
    }

    .content-container {
        padding: 0.75rem;
    }

    .content-container.right-section:not(.page-layout .right-section) {
        width: calc(100% - 20px);
        margin: 0.75rem auto;
        padding: 15px 20px;
    }

    .right-section {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

/* Right Sidebar Btn */
    .sidebar-hol {
        width: 50px;
        padding: 3px;
        top: 60%;
    }
    .sidebar-btn {
        padding: 6px 0;
        margin: 3px 0;
    }
    .sidebar-btn span {
        font-size: 11px;
    }
    .icon-box img {
        width: 24px;
        height: 24px;
    }
}

.sidebar-hol {
    width: 60px;
    background: #eaf6ff;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    box-shadow: -1px 1px 5px 0px rgba(50, 50, 50, 0.2);
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-btn {
    padding: 8px 0;
    text-align: center;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2196F3;
    border-radius: 4px;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.sidebar-btn:hover {
    background: #1976D2;
}

.sidebar-btn span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

.icon-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 38px;
    height: 38px;
    max-width: 100%;
}

#whatsupBtn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sidebar-hol {
        width: 50px;
        padding: 3px;
        top: 60%;
    }
    .sidebar-btn {
        padding: 6px 0;
        margin: 3px 0;
    }
    .sidebar-btn span {
        font-size: 11px;
    }
    .icon-box img {
        width: 24px;
        height: 24px;
    }
}



/* FAQ Section */
    .faq-sec {
        width: calc(100% - 20px);
        margin: 0.75rem 10px;
        padding: 0 0.25rem;
    }

    .faq-sec .h3 {
        font-size: 16px;
        margin: 20px 10px 20px;
    }

    .faq-sec .container {
        padding: 0;
    }

    .faq-sec .faq-columns {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        padding: 0; /* Will be overridden at ≤768px */
        margin: 0;
    }

    .faq-sec .faq-column {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .faq-sec .faq-item {
        margin-bottom: 10px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        min-width: 0;
    }

    .faq-sec .faq-question {
        font-size: 14px;
        padding: 12px 15px;
        min-height: 50px;
        height: 50px;
        width: 100%;
    }

    .faq-sec .faq-answer {
        font-size: 13px;
        padding: 15px;
    }

    .faq-sec .faq-question::before {
        font-size: 18px;
    }

    .faq-sec .faq-toggle {
        font-size: 14px;
    }

    .faq-sec .faq-title {
        line-height: 26px;
        min-width: 0;
        max-width: 100%;
        display: block;
    }
}

@media (max-width: 768px) {
    .main-content-wrapper {
        width: calc(100% - 20px);
        margin: 0.75rem 10px;
        padding: 0 0.25rem;
    }

    .page-content-wrapper {
        width: calc(100% - 20px);
        margin: 0.75rem 10px;
        padding: 0.25rem;
    }

    .text-section {
        padding: 0.75rem;
    }

    .page-content {
        margin: 0 0.5rem;
    }

    .new-layout-section {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .page-layout {
        width: calc(100% - 20px);
        margin: 0.75rem 10px;
        gap: 1rem;
    }

    .content-container {
        padding: 0.75rem;
    }

    .content-container.left-section {
        padding-left: 12px; /* 10px (parent margin) + 12px = 22px total */
        padding-right: 12px;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .content-container.right-section:not(.page-layout .right-section) {
        width: calc(100% - 20px);
        margin: 0.75rem 10px;
        padding: 15px 20px;
    }

    .right-section {
        width: calc(100% - 20px);
        max-width: 400px;
        margin: 0 10px;
    }

    .faq-sec {
        width: calc(100% - 20px);
        margin: 0.75rem 10px;
        padding: 0 0.25rem;
    }

    .faq-sec .faq-columns {
        padding-left: 12px; /* 10px (parent margin) + 12px = 22px total */
        padding-right: 12px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .main-content-wrapper {
        width: calc(100% - 20px);
        margin: 0.5rem 10px;
        padding: 0 0.15rem;
    }

    .page-content-wrapper {
        width: calc(100% - 20px);
        margin: 0.5rem 10px;
        padding: 0.15rem;
    }

    .text-section {
        padding: 0.75rem;
    }

    .page-content {
        margin: 0 0.5rem;
    }

    .new-layout-section {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .new-layout-section .content-image {
        margin-bottom: 0.5rem;
    }

    .page-layout {
        width: calc(100% - 20px);
        margin: 0.5rem 10px;
        gap: 0.5rem;
    }

    .content-container {
        padding: 0.5rem;
    }

    .content-container.left-section {
        padding-left: 8px; /* 10px (parent margin) + 8px = 18px total */
        padding-right: 8px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .content-container.right-section:not(.page-layout .right-section) {
        width: calc(100% - 20px);
        margin: 0.5rem 10px;
        padding: 10px 15px;
    }

    .right-section {
        width: calc(100% - 20px);
        max-width: 400px;
        margin: 0 10px;
    }

    .left-section h1 {
        font-size: 1.5rem;
    }

    .query-form h3 {
        font-size: 1.1rem;
    }

    .offer-price {
        font-size: 1.1rem;
    }

    .send-query-btn {
        height: 48px;
        font-size: 15px;
        padding: 10px 28px;
    }

    .faq-sec {
        width: calc(100% - 20px);
        margin: 0.5rem 10px;
        padding: 0 0.15rem;
    }

    .faq-sec .faq-columns {
        padding-left: 8px; /* 10px (parent margin) + 8px = 18px total */
        padding-right: 8px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* FAQ Section (Single Column) */
.faq-sec {
    width: 100%;
    max-width: 1200px;
    margin: 0.75rem auto;
    padding: 0 0.25rem;
    background: #fff;
    box-shadow: 0px 10px 65px #00000012;
    border-radius: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    clear: both;
    position: relative;
    z-index: 10;
}

.faq-sec:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-sec .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.faq-sec .h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #003087;
    margin: 24px 15px 24px;
    text-align: center;
    box-sizing: border-box;
}

.faq-sec .faq-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.faq-sec .faq-column {
    width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
}

.faq-sec .faq-item {
    background: #ffffff;
    border: 1px solid #d0d8e6;
    border-radius: 12px;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.faq-sec .faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-sec .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(145deg, #f8fbff, #edf3ff);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    position: relative;
    min-height: 60px;
    height: 60px;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
}

.faq-sec .faq-question::before {
    content: 'Q';
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(to right, #ff7600, #ff0052);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
    line-height: 30px;
}

.faq-sec .faq-title {
    flex: 1;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.faq-sec .faq-toggle {
    font-size: 22px;
    line-height: 30px;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    font-weight: 600;
    visibility: visible;
}

.faq-sec .faq-toggle::before {
    content: '+';
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.faq-sec .faq-toggle.active::before {
    content: '-';
    display: inline-block;
}

.faq-sec .faq-answer {
    display: none;
    padding: 20px;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    border-top: 1px solid #d0d8e6;
    box-sizing: border-box;
}

.faq-sec .faq-answer.active {
    display: block;
}

.faq-sec .faq-content a {
    color: #fe6367;
    text-decoration: underline;
}

.faq-sec .faq-content a:hover {
    color: #0c6;
}

.faq-sec .faq-content p, .faq-sec .faq-content ul, .faq-sec .faq-content ol, .faq-sec .faq-content div {
    margin: 0 0 10px 0;
    padding: 0;
}

.faq-sec .faq-content ul, .faq-sec .faq-content ol {
    padding-left: 20px;
}

.faq-sec .faq-content li {
    margin-bottom: 8px;
}

.faq-sec .faq-content b, .faq-sec .faq-content strong {
    color: #1e40af;
}

/* Table Styles */
table {
    width: auto !important;
    max-width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
    background-color: transparent;
}

thead {
    display: table-header-group;
}

tbody {
    display: table-row-group;
}

tr {
    display: table-row;
}

th, td {
    padding: 0.3rem;
    font-size: small;
    color: var(--text-color);
    border: 1px solid #dee2e6;
    text-align: left;
    vertical-align: top;
}

thead th {
    border-bottom: 2px solid #dee2e6;
    vertical-align: bottom;
    font-weight: bold;
    white-space: nowrap;
}

td {
    white-space: normal;
}

@media (max-width: 768px) {
    table {
        width: 100% !important;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Footer */
footer {
    background-color: #323232;
    padding: 20px 5px;
    color: #fff;
    font-size: 14px;
    text-align: left;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    max-width: 300px;
    height: fit-content;
    overflow: hidden;
}

.footer-links {
    flex: 0 0 auto;
    max-width: 860px;
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.footer-links .tabs {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links .tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #3a3a3a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 156px;
    margin-bottom: 5px;
}

.footer-logo p.logo-desc {
    margin: 0;
    font-size: 11px;
    color: #ccc;
    line-height: 1.4;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-contact p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
}

.footer-contact p:not(.contact-email, .contact-phone) {
    color: #ccc;
    font-weight: normal;
}

.footer-contact p.for-hiring {
    margin-top: 15px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
}

.footer-contact a:hover {
    color: #c0ecfe;
}

.footer-social {
    margin-bottom: 15px;
}

.footer-social p {
    margin: 0;
    font-size: 11px;
    color: #ccc;
    font-weight: normal;
    line-height: 1.4;
}

.footer-social a.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    margin-right: 10px;
    display: inline-block;
}

.footer-social a.social-icon:hover {
    color: #c0ecfe;
}

.footer-social a.social-icon i.fab {
    font-size: 16px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    text-align: left;
}

.copyright {
    color: #ccc;
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
}

.footer-links .top-footer-container {
    display: block;
}

.footer-links .top-footer-title {
    font-weight: 400;
    color: #ccc;
    font-size: 11px;
    cursor: pointer;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: linear-gradient(145deg, #3a3a3a, #2e2e2e);
    transition: all 0.3s ease;
}

.footer-links .top-footer-title:hover {
    background: linear-gradient(145deg, #444, #383838);
    transform: translateX(5px);
}

.footer-links .top-footer-title.active {
    background: linear-gradient(145deg, #4a90e2, #357abd);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.top-footer-title i.fa {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links .top-footer-title i.fa-chevron-right.active {
    transform: rotate(90deg);
}

.footer-links .links-container {
    display: none !important;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links .links-container.active {
    display: flex !important;
    opacity: 1;
}

.top-footer-container a,
.tab-content a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    margin: 0;
}

.top-footer-container a:hover,
.tab-content a:hover {
    color: #c0ecfe;
}

.footer-links .link-separator {
    color: #ccc;
    font-size: 11px;
}

.footer-links .tab-content .links-container {
    display: none !important;
}

.footer-links .tab-content .links-container.active {
    display: flex !important;
    opacity: 1;
}

@media (min-width: 769px) {
    .footer-links .top-footer-container .links-container,
    .footer-links .top-footer-container .links-container.active {
        display: none !important;
    }
}

.footer-article {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 2rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
}

.footer-article .footer-section {
    padding: 20px;
}

.footer-article .footer-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-article .footer-section p {
    line-height: 1.6;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        max-width: 100%;
        padding: 10px;
    }

    .footer-content-area,
    .footer-links {
        max-width: 100%;
        height: auto;
    }

    .footer-links {
        display: block;
    }

    .footer-links .tabs {
        display: block;
    }

    .footer-links .tab-content {
        display: none;
    }

    .footer-links .top-footer-container {
        display: block;
        margin-bottom: 10px;
        border-bottom: 1px solid #555;
    }

    .footer-links .top-footer-title {
        background: none;
        border-radius: 0;
        padding: 10px 0;
    }

    .footer-links .top-footer-title:hover {
        background: none;
        transform: none;
    }

    .footer-links .top-footer-title.active {
        background: none;
        color: #c0ecfe;
        box-shadow: none;
    }

    .footer-links .top-footer-title i.fa-chevron-right {
        display: none;
    }

    .footer-links .links-container {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        padding-left: 20px;
        transition: max-height 0.3s ease;
        opacity: 1;
    }

    .footer-links .links-container.active {
        max-height: 500px;
    }

    .footer-links .links-container a {
        display: block;
    }

    .footer-links .link-separator {
        display: inline-block;
    }

    .footer-logo,
    .footer-contact,
    .footer-social {
        margin-bottom: 12px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-logo p.logo-desc {
        font-size: 10px;
    }

    .footer-contact p,
    .footer-social p {
        font-size: 10px;
    }

    .footer-contact p.for-hiring {
        margin-top: 10px;
    }

    .footer-contact .contact-email,
    .footer-contact .contact-phone {
        display: block;
    }

    .footer-contact a {
        font-size: 10px;
        margin-right: 8px;
    }

    .footer-contact a i.fa {
        font-size: 14px;
    }

    .footer-social a.social-icon {
        font-size: 10px;
        margin-right: 8px;
    }

    .footer-social a.social-icon i.fab {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 12px 10px;
    }

    .copyright {
        font-size: 10px;
    }

    .footer-links .top-footer-title {
        font-size: 10px;
    }

    .footer-links .links-container {
        padding-left: 15px;
    }

    .footer-article {
        width: calc(100% - 20px);
        margin: 20px 10px 2rem auto;
        padding: 15px;
    }

    .footer-article .footer-section {
        padding: 15px;
    }
}