.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 20px;
}
.custom-gallery img {
  width: calc(33.333% - 10px);
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.custom-gallery img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
@media (max-width: 768px) {
  .custom-gallery img {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .custom-gallery img {
    width: 100%;
  }
}
.you-deserve-box {
  background-color: #59C3B2; /* your green */
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  margin: 30px 0;
}
/* === Kindness Banner Styling === */
#mod-custom127 {
  background-image: url('/images/mmediate_banner.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

#mod-custom127 .banner-overlay {
  color: white;
  padding: 40px 60px;
  border-radius: 15px;
  font-size: 28px;
  max-width: 800px;
  line-height: 1.6;
}

/* Optional styling for author line */
#mod-custom127 .banner-overlay em {
  display: block;
  font-size: 18px;
  margin-top: 10px;
  color: #ddd;
}

/* === Mobile Optimization === */
@media (max-width: 768px) {
  #mod-custom127 {
    height: auto;
    padding: 40px 0;
  }

  #mod-custom127 .banner-overlay {
    font-size: 20px;
    padding: 20px;
    max-width: 90%;
  }

  #mod-custom127 .banner-overlay em {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .kindness-banner {
    height: auto;
    padding: 40px 20px;
  }

  .kindness-overlay {
    padding: 20px;
    max-width: 90%;
  }

  .kindness-overlay p {
    font-size: 18px;
  }

  .kindness-overlay .quote-author {
    font-size: 16px;
  }
}

.kindness-banner {
  background-image: url("/images/mmediate_banner.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kindness-overlay {
  background: rgba(0, 0, 0, 0.4); /* translucent grey */
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 800px;
  text-align: center;
}

.kindness-overlay p {
  color: white;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.kindness-overlay .quote-author {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-style: italic;
  color: #fff;
}

/* New Pricing Section */
.new-pricing-section {
  padding: 60px 5%;
  background-color: #ffffff;
}

.pricing-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  text-align: left;
}

/* Container for all boxes */
.new-pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual pricing box */
.new-pricing-box {
  background-color: #f7fefc;
  border: 2px solid #59C3B2;
  border-radius: 16px;
  padding: 30px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.new-pricing-box:hover {
  transform: translateY(-5px);
}

/* Featured (Gold) box */
.new-pricing-box.featured {
  border: 2px solid gold;
  background-color: #fffce5;
}

/* Pricing header */
.new-pricing-box h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

/* List of features */
.new-pricing-box ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Description paragraph */
.description {
  font-size: 16px;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
}

/* Apply Button */
.apply-button {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #59C3B2;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apply-button:hover {
  background-color: #3aa99f;
}

/* Responsive stack on smaller screens */
@media (max-width: 960px) {
  .new-pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .new-pricing-box {
    width: 90%;
  }

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

}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* was 280px */
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

div.page-header {
  display: none !important;
  background: hotpink !important;
}

#mod-custom127 .banner-quote {
  padding-top: 300px; /* Adjust as needed */
}

#mod-custom127 {
  height: 600px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #mod-custom127 {
    height: 250px;
  }
}

#mod-custom127 .banner-quote {
  text-align: right;
  padding-right: 3rem;
  color: white;
}

.banner-quote {
  text-align: right;
  padding-right: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 2;
}

.banner-quote h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin: 0;
}

.banner-quote p {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: white;
}

.spacer {
  display: block;
  height: 0.5rem; /* Or use 4px, 8px, whatever spacing you like */
  margin-bottom: 0.5rem;
}

.simple-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto;
}

.slide-track {
  display: flex;
  gap: 1rem;
  animation: scroll 30s linear infinite;
}

.slide-track img {
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.testimonial-box {
  background-color: #f5f5f5;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
}

.testimonial-box p {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial-box span {
  display: block;
  font-weight: bold;
  color: #777;
}

/*colour
lgreen eeefc2
green ced84c
blue 58c3b2
dgrey bdccd4
lgrey edf6f9
ocean 017acb*/

/* WIDTHS*/

.site-grid {
  margin-right:10%;
    margin-left:10%;
}
:root {
  --cassiopeia-color-primary: #58c3b2;
  --cassiopeia-color-hover: #eeefc2;
  --cassiopeia-color-link: #1C5E5A;
}
.grid-child.container-nav{
   background-color: #58c3b2;
  }

/*TEXT*/
:root {
    --link-color: #58c3b2;
    --link-hover-color: #017acb;
}
h1, h2, h3, h4, h5, h6 {
  color: #017acb;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #017acb;
}
/*BTN*/
.btn-info {
    --btn-color: #017acb;
    --btn-bg: #fff;
    --btn-border-color: #017acb;
    --btn-hover-color: #fff;
    --btn-hover-bg: #017acb;
    --btn-hover-border-color: #264f70;
  }
/*FRONT BANNER */
.container-banner .banner-overlay .overlay {
  background-color: #ffffff10;
  }
/* HEADER*/
.container-header {
    background-color: #ffffff;
  background-image: none;
    box-shadow: inset 0 5px 5px #00000008;
}
/*Gradient
    background-color: #ffffff80;
opacity: 0.4;
    background-color: var(--cassiopeia-color-primary);
    background-image: linear-gradient(135deg, var(--cassiopeia-color-primary) 0%, var(--cassiopeia-color-hover) 100%);*/

}
/* Remove space between modules on smaller screens */
@media (max-width: 768px) {
    .mod-custom-custom {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .mod-custom-custom-wrapper,
    .mod-custom-custom .mod-custom-custom-inner {
        margin: 0 !important;
        padding: 0 !important;
    }

/* === FORCE Override for Top Banner Only === */
@media (max-width: 768px) {
    #mod-custom127.mod-custom-custom {
        margin-bottom: auto !important;
        padding-bottom: auto !important;
    }

    #mod-custom127 .mod-custom-custom-wrapper,
    #mod-custom127 .mod-custom-custom .mod-custom-custom-inner {
        margin: auto !important;
        padding: auto !important;
    }
}


/* === Top Banner Module (No Button) === */
.top-banner {
    position: relative;
    background: url('/images/banner-image.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Keeps content on the right */
    padding-right: 8%;
    width: 100%;
}

.banner-content {
    max-width: 450px;
    text-align: right;
    color: black !important;
    position: absolute !important;
    right: 8% !important;
    top: 65% !important; /* move it lower */
    transform: translateY(-40%) !important; /* fine-tune */
}


/* Quote Text */
.banner-content h2 {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 10px;
    color: black;
}

/* Author Name */
.banner-author {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .top-banner {
        height: 300px;
        padding-right: 5%;
    }

    .banner-content {
        max-width: 90%;
    }

    .banner-content h2 {
        font-size: 22px;
    }
}

  }
#welcome-section {
    background-color: #f2f2f2; /* Soft grey background */
    padding: 40px 20px; /* Top and bottom padding, adjust as needed */
    text-align: center;
}

.welcome-content {
    max-width: 800px; /* Keeps text from stretching too wide */
    margin: 0 auto; /* Centers the content horizontally */
}

.welcome-text {
    font-size: 18px;
    color: #333; /* Dark grey or black for the text */
    line-height: 1.6;
    margin-bottom: 20px;
}

.welcome-line {
    width: 200px; /* Adjust line size if needed */
    height: auto;
    margin: 10px auto; /* Centers the line */
    display: block;
}

.welcome-paragraph {
    font-size: 16px;
    color: #555; /* Slightly lighter text color for contrast */
    line-height: 1.8;
}
#you-deserve-banner {
    background-color: #59C3B2; /* Light green background */
    padding: 15px 0; /* Adds vertical space */
    text-align: center;
    width: 100%;
}

#you-deserve-banner p {
    font-size: 20px; /* Adjust size to match your design */
    font-weight: bold; /* Makes the text stand out */
    color: #FFF; /* Light text for contrast */
    margin: 0; /* Removes default paragraph spacing */
    letter-spacing: 1px; /* Optional: Adds slight spacing for elegance */
}
/* === Retreat Section Styling === */
.retreat-section {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between the two boxes */
    margin-top: 40px;
}

/* Individual Retreat Box */
.retreat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px; /* Adjust based on image size */
}

/* Retreat Images */
.retreat-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Background Box Under Text */
.retreat-text-box {
    background-color: #59C3B2; /* Your green/blue color */
    padding: 20px;
    margin-top: 15px; /* Moves box closer to image */
    width: 100%;
}

/* Retreat Titles */
.retreat-text-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

/* Retreat Description */
.retreat-text-box p {
    font-size: 16px;
    color: white;
    margin: 0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .retreat-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .retreat-box {
        max-width: 90%;
    }

    .retreat-text-box {
        width: 100%;
    }
}

/* Retreat section styling */
.retreat-grid {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.retreat-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

/* Grid layout for larger screens */
.retreat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Removes underline from links around cards */
.retreat-cards a {
    text-decoration: none; /* Removes underline from linked cards */
}

/* Retreat Card titles styling */
.retreat-card h3 {
    font-size: 20px; /* Adjust size to match your screenshot */
    color: #333;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* Retreat descriptions styling */
.retreat-card p {
    font-size: 14px;
    color: #555;
    margin-top: 0;
    line-height: 1.5;
}

/* Mobile optimization: Make titles slightly bigger for better readability */
@media (max-width: 768px) {
    .retreat-card h3 {
        font-size: 20px;
    }

    .retreat-card p {
        font-size: 16px;
    }
}

/* Remove underline from links */
.retreat-card a,
.retreat-card a:hover {
    text-decoration: none;
}
/* Ensure retreat cards stay proportional */
.retreat-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers text under image */
    text-align: center;
    width: 100%;
}

/* Make title (h3) 80% the width of the image */
.retreat-card h3 {
    width: 80%; /* Titles take up 80% of the image width */
    font-size: 22px; /* Adjusted for readability */
    color: #333;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
}

/* Keep paragraph text proportional */
.retreat-card p {
    width: 75%; /* Keeps paragraph proportional under title */
    font-size: 14px; /* Adjust based on preference */
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
    text-align: center;
}

/* Mobile optimization: Ensure text scales well */
@media (max-width: 768px) {
    .retreat-card h3 {
        width: 90%; /* Slightly wider for mobile */
        font-size: 20px; /* Keeps size readable */
    }

    .retreat-card p {
        width: 85%; /* Keeps text proportional under title */
        font-size: 16px;
    }
}
/* Full-width banner section */
#final-banner {
    background-color: #e6e6e6; /* Light grey background */
    padding: 60px 20px;
    text-align: center;
}

/* Center content inside */
.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 40px;
}

/* Individual items */
.banner-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Keeps everything centered */
}

/* Images */
.banner-item img {
    width: 100%;
    max-width: 400px; /* Ensures consistent image sizing */
    height: auto;
    border-radius: 5px; /* Optional */
}

/* Titles */
.banner-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
    width: 100%; /* Matches the image width */
    max-width: 400px; /* Ensures it never exceeds the image width */
    text-align: center;
}

/* Descriptive Text */
.banner-item p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
    width: 100%; /* Matches the image width */
    max-width: 400px; /* Ensures it never exceeds the image width */
    text-align: center;
}

/* Decorative Line */
.decorative-line {
    width: 60px;
    height: 2px;
    background-color: #4a7c59; /* Green decorative line */
    margin: 10px auto;
}

/* Mobile Optimization: Stack on smaller screens */
@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr; /* Stacks the items */
        gap: 30px;
    }

    .banner-item img {
        max-width: 300px; /* Smaller images on mobile */
    }

    .banner-item h3 {
        font-size: 20px;
        max-width: 300px; /* Ensures text stays within mobile images */
    }

    .banner-item p {
        font-size: 14px;
        max-width: 300px; /* Ensures text stays within mobile images */
    }
}

}
/* === Two-Column Text Section (Restoring Grey Background) === */
.article-text {
    display: flex;
    gap: 40px;
    padding: 50px 5%;
    background: #f4f4f4; /* Restores grey background */
    width: 100%; /* Ensures full width */
    min-height: 350px; /* Prevents shrinking */
    max-width: none; /* Ensures it spans across large screens */
    align-items: center; /* Keeps text vertically centered */
}

/* Columns remain balanced */
.article-text .column {
    flex: 1;
    text-align: left;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* Mobile Optimization - Stacks Columns */
@media (max-width: 768px) {
    .article-text {
        flex-direction: column;
        gap: 20px;
        padding: 30px 5%;
        min-height: auto; /* Adjusts height dynamically */
    }
}
/* === "You Will..." Section (With Left-Aligned Title) === */
.you-will {
    background: #59C3B2; /* Background color */
    padding: 60px 5%;
}

/* "You Will..." Title - Left Align with Boxes */
.you-will h2 {
    font-size: 36px;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left; /* Left aligns the title */
    margin-left: calc((100% - 1000px) / 2); /* Matches left edge of boxes */
    max-width: 1000px;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Grid Boxes */
.grid-item {
    background: transparent;
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    border: 2px solid white; /* White thin border */
    border-radius: 10px; /* Rounded corners */
    line-height: 1.4;
}

/* Mobile Optimization - Switch to 2 Columns */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .you-will h2 {
        text-align: center; /* Centers title for smaller screens */
        margin-left: 0;
    }
}

/* Mobile Optimization - Switch to 1 Column */
@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* === Upcoming Dates Section (2/3 Text - 1/3 Image, Forced Layout) === */
.upcoming-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: white;
    padding: 50px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Dates Take 2/3 Width */
.dates {
    width: 66.66%;
    padding-right: 5%;
}

/* "Upcoming Dates" Title */
.dates h2 {
    font-size: 36px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    text-align: left; /* Left-align title */
}

/* Date List - Styled with Black Dividers */
.dates ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Stretching the Black Line Past the Left Edge */
.dates li {
    font-size: 20px;
    color: black;
    padding: 15px 0;
    position: relative;
    text-align: left;
}

/* Black Line - Force Alignment Past Left Edge */
.dates li::before {
    content: "";
    position: absolute;
    left: -10%; /* Extends left */
    width: 120%;
    bottom: 0;
    height: 1px;
    background: black;
}

/* Ensure Last Date Has No Line */
.dates li:last-child::before {
    display: none;
}

/* Right Side - Image Takes 1/3 Width and Aligns Right */
.dates-image {
    width: 33.33%;
    display: flex;
    justify-content: flex-end; /* Aligns image to the right */
}

.dates-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 400px; /* Prevents stretching */
}

/* Mobile Optimization - Stack Text & Image */
@media (max-width: 768px) {
    .upcoming-dates {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .dates {
        width: 100%;
        padding-right: 0;
    }

    .dates h2 {
        text-align: center;
    }

    .dates li {
        text-align: center;
    }

    .dates li::before {
        left: 0;
        width: 100%;
    }

    .dates-image {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }
}
/* === Holistic Retreat Info Section === */
.holistic-info {
    background: #EAEAEA; /* Light grey background */
    text-align: center;
    padding: 50px 10%;
}

/* Style for Paragraph Text */
.holistic-info p {
    font-size: 20px;
    color: black;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto; /* Centers text block */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .holistic-info {
        padding: 40px 5%;
    }

    .holistic-info p {
        font-size: 18px;
    }
}
/* === Schedule Section === */
.schedule-section {
    background: white;
    text-align: left;
    padding: 60px 5%;
    max-width: 800px;
    margin: 0 auto; /* Centers it within the section */
}

/* Schedule Title */
.schedule-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #D1D864; /* Yellow title color */
    margin-bottom: 5px;
}

/* Yellow Line Below Title */
.schedule-section h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #D1D864;
    margin-top: 5px;
}

/* Schedule Introduction */
.schedule-intro {
    font-size: 18px;
    color: black;
    margin-bottom: 20px;
}

/* Daily Schedule Heading */
.schedule-section h3 {
    font-size: 22px;
    font-weight: bold;
    color: #59C3B2; /* Greenish-blue color */
    margin-bottom: 15px;
}

/* Schedule Table Styling */
.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Rows */
.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 18px;
    color: black;
    border-bottom: 1px solid #59C3B2; /* Greenish-blue dividers */
}

/* Ensure Last Row Doesn't Have a Line */
.schedule-row:last-child {
    border-bottom: none;
}

/* Bold Styling for Time Column */
.schedule-row .time {
    font-weight: bold;
}

/* Schedule Footer Text */
.schedule-footer {
    font-size: 18px;
    margin-top: 30px;
    text-align: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .schedule-section {
        padding: 40px 5%;
    }

    .schedule-table {
        gap: 8px;
    }

    .schedule-row {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }
}
/* === Investment Banner (Text Centered Perfectly) === */
.investment-banner {
    background: #59C3B2; /* Greenish-blue background */
    text-align: center;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 60px; /* Adjust height as needed */
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    color: white;
}
/* === Pricing Section === */
.pricing-section {
    text-align: center;
    padding: 60px 5%;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Title */
.pricing-section h2 {
    font-size: 40px;
    font-family: sans-serif;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}

/* Pricing Boxes Container */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* Individual Pricing Boxes */
.pricing-box {
    width: 300px;
    padding: 30px;
    border: 2px solid #59C3B2; /* Blue-green thin border */
    border-radius: 15px; /* Rounded corners */
    text-align: center; /* Ensures text inside boxes is CENTERED */
}

/* Package Title */
.pricing-box h3 {
    font-size: 22px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-bottom: 5px;
}

/* Small Line Under Package Title */
.pricing-line {
    width: 50%;
    height: 2px;
    background: #59C3B2;
    margin: 5px auto 15px auto;
}

/* Price Text */
.price {
    font-size: 32px;
    font-weight: bold;
    color: black;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

/* Pricing Details - Left Aligned */
.pricing-details {
    text-align: left;
}

/* Thin Dividers */
.pricing-section hr {
    width: 100%;
    border: none;
    border-top: 1px solid #59C3B2; /* Blue-green thin line */
    margin: 20px 0;
}

/* Paragraph Styling */
.pricing-section p {
    font-size: 18px;
    color: black;
    line-height: 1.6;
}

/* Mobile Optimization - Stack Pricing Boxes */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-box {
        width: 90%;
    }
}
/* === Explore Beautiful Fuerteventura (Aligned Perfectly) === */
.fuerteventura-banner {
    position: relative;
    width: 100%;
    max-width: 1400px; /* This keeps it aligned with the sections above */
    margin:  auto; /* Centers it properly */
    overflow: hidden;
}

/* Ensures image does not stretch too far */
.fuerteventura-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Centered Text */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    width: 100%;
    max-width: 800px; /* Ensures text doesn’t go too wide */
    padding: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .banner-text {
        font-size: 28px;
        max-width: 90%;
    }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
}

.testimonial-box {
  background: #a2cbbf;
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}