@import url("bootstrap-icons/bootstrap-icons.css");

:root {
    font-family: 'Roboto Condensed', sans-serif;
}
/* --- Override behavior of standard HTML elements --- */
html {
    scroll-padding-top: 90px; /* Subtracts height of sticky header to anchor jumpmarks */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}
p {
    color: #222;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 10px;
    width: 100%;
}
h1 {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.2;
    padding: 20px 0;
    text-align: center;
    text-transform: uppercase;
}
h2 {
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.2;
    margin: 20px 0;
    text-align: center;
    text-transform: uppercase;
}
h3 {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.2;
    margin: 10px 0;
    text-align: center;
    text-transform: uppercase;
}
b {
    font-weight: 400;
}
a {
    color: rgba(174, 138, 77, 0.9);
    text-decoration: none;
}
ul {
    list-style-type: disc;
    padding-left: 40px;
    margin: 0;
}
li {
    margin-bottom: 5px;
}
/* Custom unordered list with checkmarks */
ul.checklist {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}
ul.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
ul.checklist li i {
    flex-shrink: 0;
    font-size: 1.2em; /* Adjust icon size */
    color: rgba(174, 138, 77, 0.9);
}
ul.checklist li span {
    display: inline;
    line-height: 1.4;
}
ul.checklist li b {
    font-weight: 450;
    display: inline;
    margin: 0;
    padding: 0;
}
/* Custom unordered list with checkmarks in blue */
ul.checklist-blue {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}
ul.checklist-blue li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
ul.checklist-blue li i {
    flex-shrink: 0;
    font-size: 1.2em; /* Adjust icon size */
    color: rgba(29, 140, 230, 0.9);
}
ul.checklist-blue li span {
    display: inline;
    line-height: 1.4;
}
ul.checklist-blue li b {
    font-weight: 450;
    display: inline;
    margin: 0;
    padding: 0;
}
/* Custom unordered list with checkmarks in green */
ul.checklist-green {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}
ul.checklist-green li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
ul.checklist-green li i {
    flex-shrink: 0;
    font-size: 1.2em; /* Adjust icon size */
    color: rgba(40, 167, 69, 0.9); /* Green checkmark color */
}
ul.checklist-green li span {
    display: inline;
    line-height: 1.4;
}
ul.checklist-green li b {
    font-weight: 450;
    display: inline;
    margin: 0;
    padding: 0;
}
/* Custom unordered list with checkmarks in red */
ul.checklist-red {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}
ul.checklist-red li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
ul.checklist-red li i {
    flex-shrink: 0;
    font-size: 1.2em; /* Adjust icon size */
    color: rgba(220, 53, 69, 0.9); /* Red checkmark color */
}
ul.checklist-red li span {
    display: inline;
    line-height: 1.4;
}
ul.checklist-red li b {
    font-weight: 450;
    display: inline;
    margin: 0;
    padding: 0;
}

/* --- General formatting classes --- */
.h1-full {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.2;
    padding: 20px 0;
    text-align: center;
    text-transform: uppercase;
}
.p-full {
    font-family: 'Roboto Condensed', sans-serif;
    color: #222;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 10px;
    width: 100%;
}
.hr-blue {
    background-color: rgba(29, 140, 230, 0.9);
    border: none;
    height: 1px;
    margin: 0 auto;
    width: 100%;
}
.no-wrap {
    white-space: nowrap;
}
.centered-paragraph {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}
.centered-paragraph:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}
.inline-block {
    display: inline-block;
    white-space: nowrap;
}
.spacer {
    height: 10px;
}
.spacer-large {
    height: 30px;
}
.wrapper-clear {
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}
.wrapper-clear-blue-outline {
    background: rgb(212, 238, 255);
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}
.wrapper-light {
    background: rgb(240, 238, 234);
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}
.wrapper-medium {
    background: rgb(224, 208, 172);
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}
.wrapper-light-blue {
    background: rgb(230, 245, 255); /* Light blue background */
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 20px;
}
/* --- Page header classes --- */
.header {
    align-items: center;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    padding: 10px;
    position: sticky;
    top: 0; /* Stick to the top of the viewport */
    z-index: 999;
}
.logo {
    text-align: center;
}
.logo img {
    max-height: 50px;
}
/* --- Page footer classes --- */
.global-footer {
    background-color: #222;
    color: #fff;
    margin-top: auto; /* Footer stays at the bottom */
    padding: 20px;
    position: relative;
    text-align: center;
    z-index: 10;
}
.footer-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}
.footer-icons {
    display: flex;
    gap: 15px;
}
.footer-icon {
    color: #bbb;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-icon:hover {
    color: rgb(215, 180, 109);
    transform: scale(1.3); /* Slightly enlarge on hover */
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9em;
    font-weight: 300;
    gap: 15px;
    justify-content: center;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: rgb(215, 180, 109);
}
.footer-links-small {
    color: #bbb;
    display: flex;
    font-size: 0.8em;
    font-weight: 300;
    justify-content: center;
}
.footer-links-small a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links-small a:hover {
    color: rgb(215, 180, 109);
}
.footer-copyright p {
    color: #bbb;
    font-size: 0.8em;
}
/* Basis-Stil für den Footer */
.contact-footer {
    background-color: #444;
    color: #fff;
    margin-top: auto; /* Footer bleibt am unteren Rand */
    padding: 20px;
    position: relative;
    text-align: center;
    z-index: 10;
}
/* Container für den Footer-Inhalt */
.contact-footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 10px;
}
/* Linke Spalte: Informationen */
.contact-footer-info {
    flex: 1;
    max-width: 600px;
    text-align: center;
}
.contact-footer-info p {
    color: #fff;
    font-size: 0.9em;
}
/* Google Maps Container */
.contact-footer-map {
    flex: 1;
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
}
/* Google Maps Bild */
.contact-footer-map-image {
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    max-width: 300px;
    transition: transform 0.3s ease;
    width: 100%;
}

/* Hover-Effekt für die Google Maps Bild */
.contact-footer-map-image:hover {
    transform: scale(1.05);
}
/* Links im Footer */
.contact-footer-link {
    color: #fff;
    font-size: 0.9em;
    text-decoration: none;
    transition: color 0.3s ease;
}
/* Hover-Effekt für Links */
.contact-footer-link:hover {
    color: rgb(215, 180, 109);
}
/* Responsive Design */
@media (max-width: 768px) {
    .contact-footer-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-footer-info {
        text-align: center;
    }
    .contact-footer-map {
        text-align: center;
    }
}
/* --- Image container at top of pages that spans screen ---*/
.image-container {
    height: 320px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.image-container img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.image-container-bloom {
    height: 320px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.image-container-bloom img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}
.image-container-slim {
    height: 160px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.image-container-slim img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.image-container.align-top img {
    object-position: top;
}
/* --- Sandwich menu --- */
.menu-toggle {
    color: rgb(181, 148, 81);
    cursor: pointer;
    font-size: 2em;
    position: absolute;
    right: 20px;
}
.menu {
    background-color: rgba(0, 0, 0, 0.8);
    display: none; /* Default hidden */
    flex-direction: column;
    height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top:74px;
    transition: height 0.3s ease;
    width: 300px;
}
.menu.show {
    display: flex;
    height: calc(100vh - 50px); /* Expand to the bottom of the window when opened */
    z-index: 1000;
}
.menu a {
    color: white;
    display: block;
    font-size: 1em;
    padding: 15px 20px;
    text-decoration: none;
    z-index: 1000;
}
.menu a:hover {
    background: rgb(181, 148, 81);
}
.submenu {
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
}
.menu-item {
    cursor: pointer;
    margin-bottom: 2px;
    position: relative;
}
.menu-item:last-child {
    margin-bottom: 0;
}
.submenu a {
    font-size: 0.9em;
    padding: 10px 20px;
    text-indent: 8px;
}
/* --- Container with 2 columns --- */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.column {
    flex: 1;
    min-width: 300px;
    padding: 0px;
}
.column.image-column {
    align-items: center;
    display: flex;
    flex: 0;
    justify-content: center;
    max-width: 100%;
}
.column.image-column img {
    height: auto;
    max-height: 400px;
    max-width: 100%;
}
.column.text-column {
    flex: 1; /* Allow some flexibility */
    max-width: fit-content; /* Take only the space needed */
}
.column.text-column h2,
.column.text-column p ul {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}
/* --- Updated Cookie Popup --- */
#cookie-popup {
	background-color: rgb(130, 100, 40);
    border: 1px solid #fff;
	border-radius: 10px;
	bottom: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: none;
	left: 50%;
	max-width: 400px;
	padding: 20px;
	position: fixed;
	transform: translateX(-50%);
	width: 90%;
	z-index: 1000;
}
#cookie-popup p {
    color: #fff;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 20px;
}
#cookie-popup .buttons {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}
#cookie-popup button {
    background-color: transparent;
    border-radius: 20px;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: normal;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#cookie-popup button:hover {
    background-color: #fff;
    color: rgb(181, 148, 81);
}
/* Highlighted accept-all button */
#cookie-popup button.accept-all {
    background-color: #68b551;
    color: white;
    border-color: #fff;
    font-weight: 600;
}

#cookie-popup button.accept-all:hover {
    background-color: #fff;
    color: rgb(181, 148, 81);
}

/* --- Carousel Container --- */
.carousel-container {
    margin-top: 0;
    max-width: 1200px;
    overflow: hidden;
    padding-top: 0;
    padding: 10px;
    position: relative;
    width: 100%;
}
.carousel {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
}
.carousel-item {
    box-sizing: border-box;
    flex: 0 0 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
    position: relative;
    text-align: center;
}
.carousel-item img {
    border-radius: 10px;
    display: block;
    flex: 0 0 auto;
    height: auto;
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
}
.carousel-item-R {
    box-sizing: border-box;
    flex: 0 0 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
    position: relative;
    text-align: center;
}
.carousel-item-R img {
    border-radius: 10px;
    display: block;
    flex: 0 0 auto;
    height: auto;
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
}
.image-container-carousel {
    position: relative;
    width: 100%;
}
.more-button {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 1px solid #000;
    bottom: 10px;
    color: #333;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    height: 30px;
    justify-content: center;
    left: 50%;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
    width: 160px;
    z-index: 2;
}
.more-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}
.arrow {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}
.left-arrow {
    left: 10px;
}
.right-arrow {
    right: 10px;
}
.arrow i {
    color: rgba(0, 0, 0, 0.6);
    font-size: 2rem;
    transition: color 0.3s ease;
}
.arrow i:hover {
    color: rgba(174, 138, 77, 0.9);
}
@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .carousel-item-R {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 1024px) {
    .carousel-item-R {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}
/* --- Customer quote styles --- */
.customer-quote {
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #222;
    display: flex;
    flex-direction: column;
    font-size: 1em;
    font-weight: 300;
    height: 280px;
    justify-content: center;
    line-height: 1.4;
    margin: 20px auto;
    max-width: 100%;
    overflow: hidden;
    padding: 50px;
    position: relative;
    text-align: center;
}
@media (max-width: 767px) {
    .customer-quote {
        height: 320px;
        padding: 30px 20px;
    }
    .quote {
        font-size: 1em;
        line-height: 1.6;
    }
}
.quote {
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}
.quote-icon {
    color: rgba(204, 204, 204, 0.3);
    font-size: 10rem;
    left: 10px;
    pointer-events: none;
    position: absolute;
    top: -20px;
    z-index: 0;
}
.quote-details {
    color: #666; /* Number of the beast :D */
    font-size: 0.9em;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}
.quote-author {
    color: #222;
    font-weight: 400;
}
.quote-date {
    color: #666;
    margin-left: 5px;
}
.star-icon {
    color: rgb(200, 151, 27);
    font-size: 1.1em;
    margin-left: 2px;
    margin-right: 2px;
}
.rating-score {
    color: rgb(200, 151, 27);
    font-size: 1.1em;
    font-weight: 400;
}
.rating-number {
    color: #333;
    font-weight: 400;
}
/* -- Action button styles -- */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.action-button {
    align-items: center;
    background-color: #444;
    border-radius: 20px;
    border: 1px solid #000;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: normal;
    gap: 8px;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 200px;
}
/* Icons inside the buttons */
.action-button i {
    color: inherit;
    font-size: 1.2em;
}
.action-button:hover {
    background-color: rgb(228, 203, 152);
    color: #000;
}
.action-button-blue {
    align-items: center;
    background-color: rgba(29, 140, 230, 0.9);
    border-radius: 20px;
    border: 0px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: normal;
    gap: 8px;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 200px;
}
/* Icons inside the buttons */
.action-button-blue i {
    color: inherit;
    font-size: 1.2em;
}
.action-button-blue:hover {
    background-color: rgba(100, 175, 245, 0.8);
    color: #fff;
}
@media (max-width: 768px) {
    .action-buttons {
        align-items: center;
        flex-direction: column;
    }
    .action-button {
        max-width: 90%;
        padding: 10px 20px;
        width: 70%;
    }
    .action-button-blue {
        max-width: 90%;
        padding: 10px 20px;
        width: 70%;
    }
}
.treatment-booking-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}
.treatment-booking-button {
    align-items: center;
    background-color: #444;
    border-radius: 20px;
    border: 1px solid #000;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: normal;
    gap: 8px;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 150px;
}
/* Icons inside the buttons */
.treatment-booking-button i {
    color: inherit;
    font-size: 1.2em;
}
.treatment-booking-button:hover {
    background-color: rgb(228, 203, 152);
    color: #000;
}
/* -- Action buttons for head of page -- */
.action-buttons-head {
    bottom: 5%;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 10;
}
.action-button-head {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 2px solid #000;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: normal;
    gap: 8px;
    justify-content: center;
    min-width: 200px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 150px;
    z-index: 1000;
}
/* Icons inside the buttons */
.action-button-head i {
    color: inherit;
    font-size: 1.2em;
}
.action-button-head:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}
@media (max-width: 768px) {
    .action-buttons-head {
        align-items: center;
        flex-direction: column;
    }
    .action-button-head {
        max-width: 90%;
        padding: 10px 20px;
        width: 70%;
    }
}
/* Boxes */
.boxed {
    align-items: center;
    background-color: #f9f9f9; /* Subtle background color */
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #222;
    display: flex;
    flex-direction: column;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.4;
    margin: 20px auto;
    max-width: 100%;
    overflow: hidden;
    padding: 20px;
    position: relative;
}
/* --- Voucher shop styles --- */
.voucher-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}
/* Mobile view: 1 column */
@media (max-width: 768px) {
    .voucher-container {
        grid-template-columns: 1fr;
    }
}
/* Individual item styling */
.voucher-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 2px solid #ccc;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover effect */
.voucher-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow on hover */
    transform: translateY(-5px); 
}
/* --- Shared container styles --- */
.master-container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 800px;
    padding: 0;
    width: 100%;
}
/* --- Two column tiles styles --- */
.tile-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}

/* Mobile view: 1 column */
@media (max-width: 768px) {
    .tile-container {
        grid-template-columns: 1fr;
    }
}

/* ✅ Center a single tile */
.tile-container.single-tile {
    grid-template-columns: 1fr;
    justify-items: center;
}

/* Individual tile styling */
.tile-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 2px solid #ccc;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.tile-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
/* --- Form container styles --- */
.form-container {
    background-color: #f9f9f9;
    border-radius: 10px; 
    border: 2px solid #ccc;
    box-sizing: border-box;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin: 20px auto;
    max-width: 800px;
    padding: 20px 20px;
    width: 100%;
}
/* Form inputs and buttons */
.form-container input,
.form-container select,
.form-container textarea {
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}
/* Focus styles */
.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus,
.form-container button:focus {
    border-color: rgba(174, 138, 77);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
/* Submit button styling */
.form-container button {
    align-items: center;
    background-color: #444;
    border-radius: 20px;
    border: 1px solid #000;
    color: white;
    cursor: pointer;
    display: block;
    font-size: 15px;
    font-weight: 400;
    margin: 0 auto;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    width: 150px;
}
.form-container button:hover {
    background-color: rgba(174, 138, 77);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        max-width: 100%;
        padding: 15px;
    }
}
/* Form group wrapper for spacing */
.form-group {
    margin-bottom: 20px;
}
/* Style select to match input fields */
select {
    appearance: none;
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid #ccc;
    box-sizing: border-box;
    color: #333;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}
/* Add a custom arrow */
select::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    content: '';
    display: inline-block;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    width: 0;
}

/* Add hover and focus effects */
select:focus {
    border-color: rgba(174, 138, 77); 
    box-shadow: 0 0 5px rgba(131, 102, 52, 0.5);
    outline: none;
}
select:hover {
    border-color: rgba(174, 138, 77);
}
.slogan {
    align-items: center;
    color: rgba(174, 138, 77, 0.9);
    display: flex;
    font-family: "Give You Glory", serif;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    justify-content: center;
    line-height: 1.0;
    text-align: center;
  }
  .video-container {
    height: 0;
    margin: 0 auto;
    max-width: 560px;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Media query for desktop screens */
@media (min-width: 768px) {
    .video-container {
        height: 315px;
        padding-bottom: 0;
        width: 560px;
    }
    .video-container iframe {
        height: 315px;
        width: 560px;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.error-box {
    background-color: #fff5f5; /* very light red */
    color: #b00020;           /* softer red text */
    border: 1px solid #f5c2c7;/* light red border */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
}

.success-box {
    background-color: #f6fff6; /* very light green */
    color: #0f5132;            /* soft green text */
    border: 1px solid #badbcc; /* light green border */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
}

