/* .hotelier-access-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.hotelier-steps .step {
    margin-top: 30px;
}

.hotelier-steps .step h3 {
    font-size: 20px;
    font-weight: 600;
}

.cta-section .cta-buttons .btn {
    padding: 10px 20px;
    font-size: 18px;
    margin-top: 15px;
}

.conciergo-logo img {
    max-width: 100%;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.join-button .btn {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #00BFFF;
    border-radius: 30px;
    text-decoration: none;
    color: white;
}

.join-button .btn:hover {
    background-color: #0099cc;
}

@media (max-width: 768px) {
    .conciergo-logo img {
        width: 100%;
    }
} */

/* Global Styles */

:root {
    --main-bg-color: #049E9A;
    --main-text-color: #049E9A;
    --conciergo-color: #3C4043;
    --heading-font: "Playfair Display", serif;
    --paragraph-font: "Poppins", sans-serif;
    --sepecial-font: "Inter", sans-serif;
    --paragraph-color: #000000;
    --sub-header-color: #000000;
    --paragraph-small-header-color: #3C4043 50%;

}


/* Logo Styles */
.conciergo-logo img,
.logo-top-left img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

/* Button Styles */
.join-button .btn, .faq-button .btn {
    font-size: 18px;
    background-color: #049E9A;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.join-button .btn:hover {
    background-color: #0099cc;
}

/* First Section: Logo, Conciergo Content, Phone Image */
.row.align-items-center {
    margin-top: 30px;
}

/* Make the logo image and phone image responsive */
.col-md-6 img {
    max-width: 100%;
    height: auto;
}

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

/* Section for Icons and Text (Second Section) */
h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

p {
    font-size: 16px;
    margin-top: 10px;
}

/* Styling for the feature icons */


/* Add some margin for the columns to separate them nicely */


/* Styling for the container (spacing) */
.container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.qr-section {
    background-color: #3C4043;
    padding: 0 3rem;
}

.qr-section h2, .qr-section h4, .qr-section p {
    color:#ffffff;
}

.section-1-text h2 {
    padding:0 5rem 0 0;
    font-size: 4rem !important;
    font-family: "Playfair Display";
}

.section-1-text p {
    font-size: 2.1rem !important;
    padding-top: 0.5rem;
    padding-right: 1rem;
}

.section-1-text {
    padding-left:5rem;
}

.section-2-text {
    padding-left:5rem;
}

.exp-section {
    padding: 0 12rem 0 10rem;
}

.exp-section h3 {
    font-size: 1.5rem;
}

.exp-section p {
    font-size:1.3rem;
}

.qr-section h2 {
    font-size:4rem;
    font-weight:800;
}

.qr-section p {
    font-size:1.8rem;
}

.question-section h3 {
    font-size:2rem
}

.question-section h1 {
    font-size:4rem;
    font-family:"Playfair Display"
}

.question-section li {
    font-size:1.5rem;
}

.join-conciergo-section, .more-info-section , .nav-section {

    padding:0 4rem;
}

.question-section {
    padding: 0 2rem;
}

/* Additional Custom Styles */
@media (max-width: 768px) {
    .join-button .btn {
        width: 100%; /* Make the button full-width on smaller screens */
        margin-top: 10px;
    }

    .col-md-2,
    .col-md-10 {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Adjust padding and margins for smaller screens */
    .row.align-items-center {
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-md-6 {
        text-align: center;
    }
}

/* Optional: Styling for the top logo */
.logo-top-left {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Styling for large screens and desktop view */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.text-left {
    text-align: left;
}

.hotelaccess-container {
    padding-top:2rem;
}

.logo {
    width:12rem !important;
}

.join-conciergo {
    text-align: left;
    padding-top: 2rem;
}

.join-conciergo .img-fluid {
    width:12rem !important;
}        

.multisteps-form__panel {
    display: none; /* All panels are hidden by default */
}

.multisteps-form__panel.js-active {
    display: block; /* Only the active panel is displayed */
}

/* Container for the progress bar */
.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

/* Style the progress bar itself */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 65%;
    flex-direction: row;
}

/* Style each step */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step .circle {
    width: 30px;
    height: 30px;
    border: 3px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step .label {
    margin-top: 10px;
    font-size: 14px;
    color: #888;
}

/* Progress bar line between steps */
.progress-line {
    flex-grow: 1;
    height: 3px;
    background-color: #000000;
    position: relative;
    top: -15px;
    z-index: -1;
    width: 100%;
    border-radius: 2rem;
}

/* Active Step Styles */
.step.js-active .circle {
    background-color: #049E9A;
    color: white;
    border-color: #049E9A;
}

.step.js-active .label {
    color: #049E9A;
}

/* Filled Progress Bar between steps */
.step-1.js-active ~ .progress-line .active{
    background-color: #049E9A;
}

.step-2.js-active ~ .progress-line .active{
    background-color: #049E9A;
}

.step-3.js-active ~ .progress-line .active{
    background-color: #049E9A;
}

.footer {
    background-color: var(--conciergo-color);
    padding: 50px 0;
}

.footer p {
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
    letter-spacing: 0px;
}

.footer a {
    text-decoration: none;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
    font-family: var(--paragraph-font);
    font-weight: 400;
}

/* Ensure consistent indentation for list items */
.faq-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove left padding */
}


.faq-list li {
    text-align: left; /* Align text within each item */
    margin-bottom: 10px; /* Add spacing between list items */
    padding-left: 20px; /* Add left padding for visual indentation */
    position: relative;
}

.faq-list li::before {
    content: "•"; /* Add a bullet point */
    color: #000000; /* Customize bullet color */
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ button styles */
.faq-button .btn {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #049E9A;
    color: white;
    transition: background-color 0.3s ease;
}

.faq-button .btn:hover {
    background-color: #007C7A;
}

.faq-section {
    margin-top: 20px;
    font-family: "Poppins";
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #049E9A;
    margin-top: 20px;
    letter-spacing: 0;
}

.faq-section p {
    font-size: 1rem;
    margin: 10px 0;
    color: #000000;
    letter-spacing: 0;
}

.faq-section ul, .faq-section ol {
    margin-left: 20px;
}

.faq-section ul li, .faq-section ol li {
    margin-bottom: 10px;
    line-height: 1.5;
}





