.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    text-align: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5rem;
    z-index: 4;
    text-shadow: 0px 3px 6px #452B0A;
}

.hero-title h1 {
    z-index: 4;
}

.overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.5);

    /* 25% opacity */
    z-index: 2;

    /* Ensure it is above slides but below the title */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #493866;
    opacity: 0.5;
    z-index: 2;
}

.hero-pagination-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 4;
    gap: 10px;
}

.hero-pagination-indicator {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    border-color: #493866;
    transition: background-color 0.3s;
}

.hero-pagination-indicator.hero-active {
    background-color: #493866;
}

.hero-pagination-indicator:hover {
    background-color: #EAEAF6;
}

.logo-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 224px;
    height: 237px;
    background-color: rgba(255, 255, 255, 0.78);

    /* White with 78% opacity */
    margin-left: 114px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    z-index: 2;

    /* Ensure it is above the overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 187.73px;
    height: 158.94px;
    object-fit: contain;
}

.aromatherapy-section {
    padding: 70px 20px;

    /* Adjust padding as needed */
    text-align: center;
}

.aromatherapy-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #452B0A;
}

.aromatherapy-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;

    /* Space between sections */
}

.content-item {
    width: 374px;

    /* Adjust to fit images and spacing */
}

.content-item img {
    width: 250px;
    height: 143.98px;
    object-fit: cover;

    /* Ensures images fit properly */
    display: block;
    margin: 0 auto;
}

.content-item h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #452B0A;
}

.content-item p {
    margin: 0;
    font-size: 18px;
    color: #452B0A;
}

.adventure-section {
    padding: 70px 140px;

    /* Margins on both sides */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    /* Space between the two sections */
    background-color: #493866;
}

.text-section {
    width: 487px;
}

.text-section h2 {
    font-size: 1.8em;
    margin: 0;
    text-align: left;

    /* Left-align the heading */
    color: white;
}

.text-section p {
    font-size: 1em;
    margin-top: 20px;
    color: white;
}

.image-section {
    width: 487px;
    display: flex;
    justify-content: center;
}

.image-section img {
    width: 444px;
    object-fit: cover;
}

.reviews-section {
    padding: 70px;
    text-align: center;
    position: relative;
}

.reviews-section h2 {
    font-size: 2em;
    margin-bottom: 80px;
    color: #452B0A;
}

.main-box {
    background-color: #493866;
    width: 1088px;
    height: auto;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.top-left-image {
    position: absolute;
    top: 20px;
    left: 150px;
    width: 300px;
    height: 300px;
    z-index: 10;
}

.paragraph-box {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 50px 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.review-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 300%;
    height: 100%;
}

.paragraph-box p {
    margin: 0;
    font-size: 1rem;
    text-align: left;
    color: white;
}

.reviewer {
    font-size: 1rem;
    text-align: right;
    padding-top: 20px;
    color: white;
    margin: 0;
}

.pagination-container {
    position: relative;
    margin: 20px auto 0;
}

.arrow {
    background-color: #493866;
    color: white;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    transform: translateY(300%);

    /* Center vertically */
}

.arrow-left {
    left: 0px;

    /* Adjust as needed to position outside the main box */
    border-radius: 50% 0 0 50%;
}

.arrow-right {
    right: 0px;

    /* Adjust as needed to position outside the main box */
    border-radius: 0 50% 50% 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #493866;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #493866;
}

.contact-section {
    background-color: #493866;
    padding: 70px;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    position: relative;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    color: #999;
    font-size: 1em;
    transition: all 0.3s ease;
    pointer-events: none;

    /* Prevents label from being clickable */
    transform: translateY(-50%);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #493866;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 1em;
    color: #452B0A;
    background-color: #ffffff;
    padding: 0 4px;
}

.contact-form button {
    background-color: #493866;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    width: 75%;
}

.contact-form button:hover {
    background-color: #3c2d56;

    /* Slightly darker shade for hover effect */
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #452B0A;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* .contact-form button {
    background-color: #8286CF;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
} */
.contact-form button:hover {
    background-color: #493866;
}

.disclaimer-section {
    background-color: white;
    padding: 70px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-section h2 {
    text-align: left;
    font-size: 2em;
    margin-bottom: 20px;
    margin-left: 0px;
}

.disclaimer-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
}

.footer-section {
    background-color: #493866;
    padding: 30px;
    text-align: center;
    color: white;
}

.footer-content {
    max-width: 800px;

    /* Adjust to fit your design */
    margin: 0 auto;
}

.footer-logo {
    width: 187px;
    height: 159px;
    margin-bottom: 20px;

    /* Space below the logo */
}

.contact-info {
    margin-bottom: 10px;

    /* Space between contact info and copyright */
}

.phone-number,
.email {
    font-size: 1.2em;
    color: white;
    text-decoration: none;
    margin: 0 10px;

    /* Space between phone number and email */
    display: inline-block;

    /* Keep them inline */
}

.phone-number:hover,
.email:hover {
    color: #dedef8;
    text-decoration: underline;
}

.separator {
    color: white;

    /* Color of the separator */
    font-size: 1.2em;
}

.copyright {
    font-size: 1em;
    color: white;
}

.boundaries-section {
    padding: 70px 140px;

    /* Add space around the section */
    background-color: #493866;

    /* Background color */
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    /* Add space between the columns */
}

.left-column {
    width: 50%;

    /* Left column takes 50% of the space */
}

.section-title {
    color: white;

    /* Title color */
    font-size: 2rem;

    /* Font size */
    margin-bottom: 15px;
}

.section-description {
    color: white;
    font-size: 1.2rem;

    /* Adjust font size */
    line-height: 1.6;
}

.right-column {
    width: 50%;

    /* Right column takes 50% of the space */
}

.blend-image {
    width: 100%;
    height: auto;

    /* Maintain aspect ratio */
}

.content-wrapper {
    display: flex;
    gap: 20px;

    /* Add space between the sections */
}

.text-section {
    width: 487px;
}

.image-section {
    width: 487px;
}

.blend-image {
    width: 100%;
    height: auto;
    max-width: 628px;
    max-height: 356px;
    object-fit: cover;
    display: block;
}

.two-columns {
    column-count: 2;
    column-gap: 20px;
    text-align: left;
}

.order-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 70px 140px;
    position: relative;
}

.order-left,
.order-right {
    width: 50%;
    padding-top: 90px;
}

.order-left h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: left;
    color: #452B0A;
}

.order-left p {
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: left;
    color: #452B0A;
    font-weight: bold;
}

.order-right p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #452B0A;
}

.order-button {
    background-color: #493866;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-button:hover {
    background-color: #EAEAF6;
    color: #493866;
}

.order-divider {
    width: 4px;
    background-color: #493866;
    height: 328px;

    /* Extends vertically */
    margin: 50px;
}

.order-left a {
    text-decoration: none;
    color: inherit;
}

.order-right a {
    text-decoration: none;
    color: inherit;
}

.blend-section {
    background-color: #493866;
    padding: 70px;
    color: white;
    text-align: center;
}

.blend-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
}

.col ul {
  padding-left: 1.2rem;
}

.privacy-note {
  margin-top: 1rem;
  padding: 1rem;
  background: #452B0A; /* brown background */
  color: #fff;         /* white text */
  border-radius: 8px;
  width: 100%;         /* span entire column width */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.lock {
  font-size: 1.2rem;
}

.image-section {
  width: 100%;
  margin: 0;
  padding: 20px;
}

.image-section img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.image-single img {
  width: 100%;
  display: block;
}

.image-single {
  grid-column: 1;
}

.cta-section {
  text-align: center;
  margin: 2rem 0 3rem;
}

.cta-btn {
  background: #493866;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.8;
}


.section-with-line {
  width: 80%;
  margin: 0 auto;            /* centers the section so the line is centered */
  border-top: 3px solid #452B0A;
  padding-top: 1.5rem;
}