
/* General Header Layout */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Inter', Helvetica, sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  background-color: #000; /* Set a dark background color for the body */
}

.qbz-header {
  display: grid; /* Changed to grid for more precise control */
  grid-template-columns: 1fr auto 1fr; /* Left, center, and right columns */
  align-items: center; /* Vertically aligns items in the center */
  padding: 10px 0; /* Changed horizontal padding to 0 to touch the borders */
  background-color: transparent; /* Changed to transparent to show the hero image */
  color: #fff;
  height: 100px;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
  position: absolute; /* Added absolute positioning to place it over the hero banner */
  top: 0;
  left: 0;
}

/* Position logo and right buttons to be on the side */
.qbz-logo-container {
  /* In a grid, this element will be in the first column */
  padding-left: 20px; /* Add padding to the logo to move it from the edge */
}

/* Logo Styling */
.qbz-logo-container img {
  height: 30px;
  width: auto;
}

/* Navigation Menu Container */
.qbz-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* The "glass" effect properties */
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #D1B262; /* Added the golden stroke here */
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 6px 10px;
  /* Removed margin auto because grid handles centering now */
}

.qbz-nav-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.qbz-nav-menu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: bold;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.qbz-nav-menu li a:hover {
    background-color: rgba(209, 178, 98, 0.2);
    color: #D1B262;
}

/* Right-side Buttons Container */
.qbz-right-buttons {
  display: flex;
  align-items: center; /* Vertically align the buttons */
  gap: 10px;
  flex-shrink: 0;
  box-sizing: border-box;
  justify-self: end; /* Aligns this element to the end of its grid column */
  padding-right: 20px; /* Add padding to the buttons to move them from the edge */
}

/* Common button styling */
.qbz-language-button,
.qbz-whatsapp-button,
.qbz-hamburger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 42px; /* Fixed height */
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: 600; /* Consistent font weight */
  font-size: 14px; /* Consistent font size */
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.qbz-hamburger-button {
    padding: 10px; /* Make it more square-like for the icon */
}

.qbz-language-button:hover,
.qbz-whatsapp-button:hover,
.qbz-hamburger-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}

/* Language Switcher */
.qbz-language-switcher {
    position: relative;
}

.qbz-language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 10px;
    margin-top: 5px;
    min-width: 100px;
}

.qbz-language-dropdown a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
}

.qbz-language-dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger button is hidden by default on larger screens */
.qbz-hamburger-button {
    display: none;
}

/* Mobile Navigation Menu Styles */
.qbz-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1002; /* Above everything else */
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qbz-mobile-nav.is-open {
    right: 0; /* Slide in */
}

.qbz-mobile-nav .qbz-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.qbz-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.qbz-mobile-nav ul li {
    margin: 20px 0;
}

.qbz-mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.qbz-mobile-nav ul li a:hover {
    color: #D1B262;
}

/* Hero Banner Styling */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 0;
    
    /* The hero banner is now linked from the images folder */
    background-image: url('../images/herobanner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Fallback color if the image doesn't load */
    background-color: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    font-family: 'Inter', Helvetica, sans-serif;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Inter', Helvetica, sans-serif;
    white-space: nowrap;
}

/* Individual colors for the hero text */
.hero-gold {
    color: #D1B262;
}

.hero-white {
    color: #fff;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 30px;
    font-weight: normal;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Styles for the filled button */
.hero-button {
    background-color: #fff;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #D1B262;
    color: #fff;
}

/* Styles for the outlined button */
.hero-button-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-button-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* About Section Styling */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 0;
  padding-bottom: 50px;
  text-align: center;
}

.gold-line-full {
  width: 100%;
  height: 2px;
  background-color: #D1B262;
  margin-bottom: 0;
}

.about-logo img {
  height: 50px;
  width: auto;
  margin-top: 50px;
  margin-bottom: 30px;
}

.about-description {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: normal;
}

.about-button-container {
  margin-bottom: 50px;
}

.request-button {
  background-color: transparent;
  border: 2px solid #D1B262;
  color: #D1B262;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.request-button:hover {
  background-color: #D1B262;
  color: #000;
}

.gold-line-short {
  width: 100px;
  height: 2px;
  background-color: #D1B262;
  margin: 20px auto;
}

/* Instagram Section Styling */
.instagram-section {
  background-color: #000;
  padding: 50px 20px;
  text-align: center;
}

.instagram-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.instagram-header p {
  color: #fff;
  font-family: 'Inter', Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
}

.instagram-icon {
  height: 30px;
  width: auto;
}

/* New container for the golden border */
.instagram-posts-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid #D1B262;
  border-radius: 25px;
  padding: 20px;
}

.instagram-posts {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.instagram-post-card {
    position: relative;
    width: 100%;
    flex: 1 1 0;
    aspect-ratio: 1 / 1.5;
    border-radius: 20px;
    overflow: hidden;
}

.instagram-post-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Anuel Section */
.anuel-section {
    background-color: #000;
    padding-top: 50px;
    color: #fff;
}

.anuel-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.anuel-text-content {
    flex: 1;
    text-align: left;
    font-family: 'Inter', Helvetica, sans-serif;
}

.anuel-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.anuel-handle {
    color: #D1B262;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.anuel-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.anuel-video-container {
    flex: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.5;
    border-radius: 20px;
    overflow: hidden;
}

.anuel-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Amanda Salazar Section */
.amanda-salazar-section {
    background-color: #000;
    padding-top: 50px;
    color: #fff;
}

.amanda-salazar-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.amanda-salazar-text-content {
    flex: 1;
    text-align: left;
    font-family: 'Inter', Helvetica, sans-serif;
}

.amanda-salazar-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.amanda-salazar-handle {
    color: #D1B262;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.amanda-salzar-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.amanda-salazar-video-container {
    flex: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.5;
    border-radius: 20px;
    overflow: hidden;
}

.amanda-salazar-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Before and After Section */
.before-after-section {
    background-color: #000;
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}

.before-after-heading {
    color: #fff;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    overflow: visible;
    perspective: 1000px;
}

.image-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.image-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%) translateZ(0);
    width: 60%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0.5s ease-in-out;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-box-reflect: below 10px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), to(rgba(250, 250, 250, 0.1)));
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot.active {
    background-color: #D1B262;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Perfect circle */
    transition: background-color 0.3s, color 0.3s;
    z-index: 110;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

.about-button-container {
  margin-top: 50px;
}

/* WHAT OUR CLIENTS SAY Section */
.reviews-section {
    background-color: #000;
    padding: 50px 0;
    text-align: center;
    overflow-x: hidden;
}

.reviews-heading {
    color: #fff;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 30px;
}

.reviews-button-container {
    margin-bottom: 40px;
}

.google-reviews-button {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #444;
    transition: background-color 0.3s;
}

.google-reviews-button:hover {
    background-color: #2a2a2a;
}

.reviews-scroller-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-scroller {
    display: flex;
    width: max-content;
}

.reviews-scroller:hover {
    animation-play-state: paused;
}

.scroller-rtl {
    animation: scroll-rtl 60s linear infinite;
}

.scroller-ltr {
    animation: scroll-ltr 60s linear infinite;
}

@keyframes scroll-rtl {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.review-card {
    background-color: #1c1c1e;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 0 15px;
    width: 350px;
    flex-shrink: 0;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #D1B262;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}

.review-name-stars {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.review-stars {
    color: #D1B262;
    font-size: 0.9rem;
}

.review-comment {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #c7c7c7;
}

/* Meet Our Team Section */
.team-section {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
}

.team-heading {
    color: #fff;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 50px;
}

.team-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border: 2px solid #D1B262;
    border-radius: 25px;
    background-color: #1a1a1a;
}

.team-card {
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    flex-grow: 1;
}

.team-member-name {
    color: #fff;
    padding: 15px;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    background-color: #000;
}

/* Contact Us Section on Front Page */
.contact-section {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
}

.contact-heading {
    color: #fff;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-subheading {
    color: #fff;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Visit Us Section */
.visit-us-section {
    background-color: #000;
    padding: 50px 20px;
    color: #fff;
}

.visit-us-heading {
    text-align: center;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 50px;
}

.visit-us-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.visit-us-details, .visit-us-map {
    flex: 1;
    min-width: 300px;
}

.visit-us-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.visit-us-info-item img {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.visit-us-info-text h3 {
    margin: 0 0 5px 0;
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 1.5rem;
}

.visit-us-info-text p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.visit-us-info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit-us-info-text a:hover {
    color: #D1B262;
}

/* Footer Section */
.site-footer {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.ready-to-start-section {
    padding: 40px 20px;
    position: relative;
}

.ready-to-start-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D1B262;
    z-index: 1;
}

.ready-to-start-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 30px 50px;
    border-radius: 20px;
    border: 1px solid #D1B262;
    position: relative;
    z-index: 2;
}

.ready-to-start-content h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.ready-to-start-content h2 .rts-gold {
    color: #D1B262;
}

.get-your-smile-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.get-your-smile-button:hover {
    background-color: #fff;
    color: #000;
}

.get-your-smile-button img {
    width: 16px;
    transition: filter 0.3s ease;
}

.get-your-smile-button:hover img {
    filter: invert(1);
}

.footer-main-container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.financing-options {
    text-align: center;
    margin-bottom: 50px;
}

.financing-options h3 {
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social-icons img {
    width: 24px;
}

.footer-social-icons a img {
    transition: filter 0.3s ease;
}
.footer-social-icons a:hover img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(30%) saturate(500%) hue-rotate(320deg) brightness(100%) contrast(90%);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #c7c7c7;
    max-width: 350px;
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a, .footer-contact a {
    color: #c7c7c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #D1B262;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: #c7c7c7;
}

.footer-contact img {
    width: 20px;
    margin-right: 15px;
}

.footer-bottom-bar {
    border-top: 1px solid #444;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: #c7c7c7;
    text-decoration: none;
    margin-right: 20px;
}

.footer-legal-links a:hover {
    color: #D1B262;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c7c7c7;
}

.footer-copyright img {
    height: 40px;
}

/* Floating Phone Button */
.floating-phone-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #D1B262;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-phone-button:hover {
    transform: scale(1.1);
}

.floating-phone-button svg {
    width: 30px;
    height: 30px;
    stroke: #000;
}

/* --- ACCESSIBILITY MENU STYLES START --- */

.accessibility-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #d1b161;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.accessibility-button:hover {
    background-color: #c19f4a;
    transform: scale(1.1);
}

.accessibility-popup {
    display: none; /* Hidden by default */
    position: fixed;
    left: 30px;
    bottom: 100px; /* Position above the button */
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    overflow: hidden;
    font-size: 14px;
    color: #1c1e21;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.popup-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.popup-header .close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #606770;
}

.popup-content {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.option-group {
    margin-bottom: 20px;
}

.option-group h3, .option-toggle h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #606770;
}

.option-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
}

.option-buttons button {
    background-color: #fff;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    font-size: 14px;
    color: #1c1e21;
}

.option-buttons.text-size-buttons,
.option-buttons.text-spacing-buttons {
    grid-template-columns: 1fr 1fr;
}

.option-buttons button.active {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.option-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.option-toggle h3 {
    margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #1877f2;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

.popup-footer {
    padding: 12px 16px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.popup-footer p {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #606770;
}

.reset-button {
    background-color: #f5f6f7;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}
.reset-button:hover {
    background-color: #e9ebee;
}

/* Accessibility Feature Styles */
html.contrast-invert {
    background-color: #fff;
    filter: invert(100%);
}
html.contrast-invert img,
html.contrast-invert iframe,
html.contrast-invert video {
    filter: invert(100%);
}
body.contrast-grayscale {
    filter: grayscale(100%);
}
body.contrast-light {
    background-color: #f0f0f0;
    color: #000;
}
body.contrast-dark {
    background-color: #1a1a1a;
    color: #f0f0f0;
}
body.contrast-dark a {
    color: #58a6ff;
}
body.highlight-links a {
    background-color: yellow !important;
    color: black !important;
    text-decoration: underline !important;
}
body.hide-images img {
    display: none !important;
}
body.dyslexia-font {
    font-family: 'OpenDyslexic', sans-serif !important;
}
body.large-cursor, body.large-cursor * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" style="font-size:32px;"><text y="32">▶</text></svg>') 0 0, auto !important;
}

/* --- ACCESSIBILITY MENU STYLES END --- */


/* Services Page Hero */
.services-hero {
    padding: 150px 20px 50px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.1rem;
    color: #c7c7c7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card-content {
    padding: 30px;
    text-align: left;
}

.service-card-content h3 {
    font-size: 1.5rem;
    color: #D1B262;
    margin-bottom: 15px;
}

.service-card-content p {
    color: #c7c7c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-button {
    background-color: transparent;
    border: 1px solid #D1B262;
    color: #D1B262;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card-button:hover {
    background-color: #D1B262;
    color: #000;
}

.other-services-section {
    padding: 80px 20px;
    text-align: center;
}

.other-services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-financing-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000;
}

.services-financing-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.services-financing-subtitle {
    font-size: 1rem;
    color: #c7c7c7;
    margin-bottom: 30px;
}

.services-financing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.services-financing-logos {
    margin-bottom: 30px;
}

.dental-tourism-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
}

.dental-tourism-content {
    flex: 1;
    color: #fff;
    text-align: left;
}

.dental-tourism-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.dental-tourism-content h3 {
    font-size: 1.5rem;
    color: #D1B262;
    margin-bottom: 20px;
}

.dental-tourism-content p {
    color: #c7c7c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-button {
    background-color: #D1B262;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background-color: #fff;
}

.dental-tourism-image {
    flex: 1;
}

.dental-tourism-image img {
    width: 100%;
    border-radius: 15px;
}


/* About Us Page Hero */
.about-us-hero {
    padding: 150px 20px 50px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.about-us-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-us-content {
    padding: 50px 20px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* About Us Team Section */
.about-team-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.about-team-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-team-image-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 20px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.about-team-image-container:hover {
    transform: scale(1.02);
}

.about-team-image-container img {
    width: 100%;
    border-radius: 15px;
}

.about-team-description {
    font-size: 1rem;
    color: #c7c7c7;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}


/* Financing Page */
.financing-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 150px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.financing-hero-content {
    flex: 1;
}

.financing-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.financing-hero-content .gold-line-short {
    margin: 20px 0;
}

.financing-hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c7c7c7;
}

.financing-hero-image {
    flex: 1;
}

.financing-hero-image img {
    width: 100%;
    border-radius: 20px;
}

.financing-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.financing-benefit-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financing-benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.financing-benefit-card img {
    width: 50px;
    margin-bottom: 20px;
}

.financing-benefit-card p {
    margin: 0;
    color: #fff;
}

.quick-contact-form-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.quick-contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.quick-contact-subtitle {
    font-size: 1rem;
    color: #c7c7c7;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.contact-us-button {
    background-color: #D1B262;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-us-button:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.making-financing-easy-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.financing-easy-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.financing-easy-logos {
    margin-bottom: 20px;
}

.financing-easy-logos img {
    max-width: 300px;
}

.financing-easy-text {
    font-size: 1rem;
    color: #c7c7c7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


/*
 * ===============================================================
 * CONTACT PAGE STYLES
 * ===============================================================
 */

.contact-page-main {
    background-color: #000;
    color: #fff;
}

.contact-hero-section {
    padding: 120px 20px 50px;
    text-align: center;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 20px 0;
}

.contact-hero-section .gold-line-short {
    margin: 0 auto 30px;
}

.contact-hero-subtitle {
    font-size: 1rem;
    color: #c7c7c7;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-page-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px; /* Space between form and details */
    padding: 0 20px 80px;
}

.contact-form-wrapper {
    flex: 1.5; /* Form takes more space */
}

.contact-details-wrapper {
    flex: 1;
}

.contact-form-title, .contact-details-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-details-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #D1B262; /* Gold color */
}

.contact-details-list {
    margin-top: 20px;
}

.contact-details-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-details-item img {
    width: 24px;
    height: auto;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.contact-details-text p {
    margin: 0;
    line-height: 1.6;
    color: #c7c7c7;
}

.contact-details-text a {
    color: #c7c7c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-text a:hover {
    color: #D1B262;
}

/* Styling for Bitrix24 Form */
/* NOTE: These styles might be overridden by Bitrix24's own CSS.
   You may need to adjust styles within your Bitrix24 account. */
.contact-form-bitrix .b24-form-field-label {
    color: #c7c7c7 !important;
}

.contact-form-bitrix .b24-form-control {
    background-color: transparent !important;
    border: 1px solid #555 !important;
    color: #fff !important;
    border-radius: 5px !important;
}

.contact-form-bitrix .b24-form-control:focus {
    border-color: #D1B262 !important;
    box-shadow: none !important;
}

.contact-form-bitrix .b24-form-btn {
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #555 !important;
    width: 100% !important;
    padding: 15px !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    transition: background-color 0.3s ease !important;
}

.contact-form-bitrix .b24-form-btn:hover {
    background-color: #444 !important;
}

.contact-form-bitrix .b24-form-checkbox-label {
    color: #c7c7c7 !important;
}

/* Contact Page Financing Options Section */
.contact-financing-section {
    padding: 80px 20px;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.contact-financing-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-financing-subtitle {
    font-size: 1rem;
    color: #c7c7c7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-financing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.contact-financing-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-financing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-financing-card h3 {
    color: #D1B262;
    margin-bottom: 15px;
}

.contact-financing-card p {
    color: #c7c7c7;
    line-height: 1.6;
}

.contact-financing-logos img {
    max-width: 100%;
    height: auto;
}

/*
 * ===============================================================
 * LITETOUCH PAGE STYLES
 * ===============================================================
 */
.litetouch-hero {
    padding: 150px 20px 50px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.litetouch-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.litetouch-white {
    color: #fff;
}

.litetouch-gold {
    color: #D1B262;
}

.litetouch-advanced-technology {
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
}

.litetouch-advanced-technology-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.litetouch-text-content {
    flex: 1;
}

.litetouch-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D1B262;
    margin-bottom: 20px;
}

.litetouch-text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c7c7c7;
    margin-bottom: 30px;
}

.schedule-button {
    background-color: #D1B262;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.schedule-button:hover {
    background-color: #fff;
}

.litetouch-image-content {
    flex: 1;
}

.litetouch-image-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.litetouch-procedures {
    padding: 80px 20px;
    background-color: #000;
    text-align: center;
}

.litetouch-procedures-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
}

.litetouch-procedures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.procedure-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.procedure-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.procedure-card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.procedure-card-title img {
    width: 24px;
    height: 24px;
}

.procedure-card-title h3 {
    margin: 0;
    color: #D1B262;
    font-size: 1.2rem;
}

.procedure-card p {
    margin: 0;
    color: #c7c7c7;
    line-height: 1.6;
}

.litetouch-in-action {
    padding: 80px 20px;
    background-color: #000;
    text-align: center;
}

.litetouch-in-action-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
}

.litetouch-in-action-posts {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.litetouch-in-action-post-card {
    position: relative;
    width: 45%;
    aspect-ratio: 1 / 1.5;
    border-radius: 20px;
    overflow: hidden;
}

.litetouch-in-action-post-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/*
 * ===============================================================
 * NEWSLETTER THANKS PAGE STYLES
 * ===============================================================
 */

.thank-you-section {
    padding: 150px 20px 80px;
    text-align: center;
    background-color: #000;
    color: #fff;
}

.thank-you-check {
    width: 80px;
    margin-bottom: 30px;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.thank-you-subtitle {
    font-size: 1rem;
    color: #c7c7c7;
    line-height: 1.6;
    margin-bottom: 40px;
}

.thank-you-gold {
    color: #D1B262;
    font-weight: bold;
}

.thank-you-financing-options {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.financing-options-title {
    font-size: 2rem;
    font-weight: bold;
    color: #D1B262;
    margin-bottom: 15px;
}

.financing-options-subtitle {
    font-size: 1rem;
    color: #c7c7c7;
    margin-bottom: 30px;
}

.financing-options-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.financing-option-card {
    background-color: #2c2c2e;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.financing-option-card:hover {
    transform: scale(1.05);
}

.financing-option-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #fff;
}

.financing-option-card p {
    margin: 0;
    color: #c7c7c7;
    font-size: 0.9rem;
}

.back-to-home-button {
    background-color: transparent;
    border: 1px solid #D1B262;
    color: #D1B262;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.back-to-home-button:hover {
    background-color: #D1B262;
    color: #000;
    transform: scale(1.05);
}


/* Media query for smaller screens - Adjusted to 1100px */
@media (max-width: 1100px) {
  .qbz-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    height: auto;
    grid-template-columns: none;
  }

  .qbz-logo-container,
  .qbz-right-buttons {
    width: auto;
    margin: 0;
    padding: 0;
    justify-self: unset;
  }
  
  .qbz-nav-menu {
    display: none;
  }

  .qbz-hamburger-button {
      display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
    white-space: normal;
  }

  .instagram-posts {
    flex-wrap: wrap;
  }

  .instagram-post-card {
    width: 45%;
  }

  .instagram-posts-container {
    padding: 10px;
  }

  .anuel-content-container,
  .amanda-salazar-content-container {
    flex-direction: column;
    text-align: center;
  }

  .anuel-text-content,
  .amanda-salazar-text-content {
    text-align: center;
  }
  
  .before-after-heading,
  .reviews-heading,
  .team-heading,
  .contact-heading,
  .visit-us-heading,
  .contact-form-title, 
  .contact-details-title,
  .contact-hero-title,
  .contact-financing-title,
  .litetouch-hero-title,
  .litetouch-section-title,
  .litetouch-procedures-title,
  .litetouch-in-action-title {
    font-size: 2rem;
  }

  .slider-container {
    height: 400px;
  }
  
  .team-card {
      width: calc(50% - 15px);
  }

  .ready-to-start-content {
      flex-direction: column;
      text-align: center;
  }

  .ready-to-start-content h2 {
      margin-bottom: 20px;
  }
  
  .footer-main-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-about, .footer-links, .footer-contact {
      align-items: center;
      text-align: center;
  }

  .footer-social-icons {
      justify-content: center;
  }
  
  .footer-contact li {
      justify-content: center;
  }
  
  .footer-bottom-bar {
      flex-direction: column;
      gap: 15px;
  }

  .contact-page-container {
      flex-direction: column;
  }

  .litetouch-advanced-technology-container {
      flex-direction: column;
  }
}

/* Media query for very small screens (phones) */
@media (max-width: 768px) {
  /* Header changes for mobile */
  .qbz-header {
    display: flex;
    justify-content: flex-end; /* Aligns the single child (right-buttons) to the end */
    align-items: center;
    padding: 10px 20px;
    height: auto;
  }

  /* Hide the logo when the hamburger menu is present */
  .qbz-logo-container {
    display: none;
  }

  .qbz-right-buttons {
    padding-right: 0;
  }
  
  /* Rest of the mobile styles */
  .hero-title {
    font-size: 2rem;
  }

  .instagram-posts {
    flex-direction: column;
    align-items: center;
  }

  .instagram-post-card {
    flex: none; /* Prevent flex-basis from collapsing the item */
    width: 90%;
    margin-bottom: 20px; /* Add some space between stacked posts */
  }
  
  .slider-container {
    height: 300px;
  }

  .slider-arrow {
      display: none; /* Hide arrows on smallest screens */
  }

  .about-logo img {
    height: 40px;
  }
  
  .review-card {
      width: 80vw;
  }
  
  .team-card {
      width: 90%;
  }

  .visit-us-container {
      flex-direction: column;
  }

  .financing-hero {
      flex-direction: column;
  }

  .financing-benefits {
      flex-direction: column;
  }

  .litetouch-procedures-grid {
      grid-template-columns: 1fr;
  }

  .litetouch-in-action-posts {
      flex-direction: column;
      align-items: center;
  }

  .litetouch-in-action-post-card {
      width: 90%;
  }

  .services-grid, .other-services-grid {
    grid-template-columns: 1fr;
  }
}
