/* CSS Variables */
:root {
  --primary: #6C734D;
  --primaryLight: #ffd675;
  --secondary: #6F97A1;
  --secondaryLight: #001f3f;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--bodyTextColor);
}

.cs-button-solid {
  z-index: 1;
  position: relative;
  margin-top: 1rem;
  display: inline-block;
  background-color: var(--primary);
  width: auto;
  padding: 0 1.875rem;
  text-decoration: none;
  font-size: 1rem;
  line-height: 3.125em;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s;
  transition-delay: 0.1s;
  text-align: center;
}
.cs-button-solid:hover {
  color: #fff;
}
.cs-button-solid:hover:before {
  width: 100%;
}
.cs-button-solid:before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 1;
  display: block;
  background-color: #000;
  height: 100%;
  width: 0;
  transition: width 0.3s;
}
.site-header {
            background-color: #fff;
            padding: 15px 40px;
            border-bottom: 1px solid #e0e0e0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .site-header .logo img {
            height: 50px;
            display: block;
        }
        .main-nav ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            gap: 30px;
        }
        .main-nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.2s;
        }
        .main-nav a:hover {
            color: #0056b3;
        }
        .header-cta {
            background-color: #007bff;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.2s;
        }
        .header-cta:hover {
            background-color: #0056b3;
        }

        /* --- Main Content Placeholder --- */
        .main-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 60vh; /* Ensures content pushes footer down */
        }

        /* --- Footer Styles --- */
        .site-footer {
            background-color: #222;
            color: #ccc;
            padding: 60px 20px 0;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-column {
            flex: 1;
            min-width: 220px;
        }
        .footer-column h4 {
            color: #fff;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 18px;
            border-bottom: 1px solid #444;
            padding-bottom: 10px;
        }
        .footer-column ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-column a:hover {
            color: #fff;
        }
        .footer-column p {
            margin: 0;
            line-height: 1.8;
        }
        .footer-bottom {
            border-top: 1px solid #444;
            text-align: center;
            padding: 20px 0;
        }
        .footer-bottom p {
            margin: 0;
            font-size: 14px;
        }
.container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
}
.flex-table-container{
	border-radius: 8px;
	background-color: white;
	width: 100%;
	padding: 15px 8px;
	margin-bottom: 1em;
}
.flex-table {
	background-color: #ffffff;
	border: 1px solid #ccc;
	border-radius: 0px;
	border: 1px solid black;
	padding: 5px;
	overflow: visible;
	display: flex;
	flex-direction: column;
}
.flex-table .flex-header,
.flex-table .flex-row,
.flex-table .flex-footer,
.flex-table .free-consultation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
}
.price{
  font-variant-numeric: tabular-nums;
  text-align: right;
  width: 109px;
  color: black;
}
.price-dollars{
	text-align: right;
}
.price-cents{
	text-align: left;
	width: 30px;
	display: inline-flex;
}
.flex-table .price-box-text-center{
	text-align: center;
	left: 50%;
	transform: translate(-50%);
	position: relative;
}
.ninety-nine{
	position:absolute;
	top: 36px;
	right: -28px;
	background-color: yellow;
	border-radius: 50px;
	padding: 12px;
	overflow: visible;
	color: black;
	font-size: 2em;
}
.ninety-nine-special{
	font-size: 1em;
	text-transform: uppercase;
}
.flex-table .flex-header {
    display: flex;
    align-items: center; 
    
    color: #f0f0f0; 
    font-weight: bold;
    padding: 0; 

}
.flex-table .header-title {
	flex-grow: 1;
	padding: 12px 15px;
	border-right: 5px solid white;
	background-color: #50483d;
	text-align: center;
}
.flex-table .price-box {
	padding: 12px 15px;
	background-color: #616844;
	width: 109px;
	display: flex;
	text-align: center;
	position: relative;
}
.flex-table .flex-row {
	border-top: 1px solid #eee;
	color: #555;
	font-size: 14px;
}
.flex-table .check-mark {
	color: black;
	font-weight: bold;
	font-size: 10px;
}
.flex-table .flex-footer {
	flex-grow: 1;
	padding: 12px 15px;
	border-right: 5px solid white;
	background-color: #50483d;
	text-align: right;
}
.flex-table .total-price {
	background-color: #8a9a83;
	padding: 8px;
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
}
.flex-table .free-consultation {
	background-color: #50483d;
	color: white;
	font-size: 14px;
}
.flex-table .book-now-alt {
	background-color: #8a9a83;
	color: white;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	font-weight: bold;
}
.flex-table .flex-row:nth-of-type(odd){
	background-color: #edecea;
}
.flex-table .check-mark{
	display: inline-block;
	width: 73px;
	text-align: center;
}
.flex-table .strike-red{
	color: white;
	position: relative;
	display: inline-block;
}
.flex-table .strike-price{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 1.5em;
	color: white;
	opacity: 0.8;
}
.flex-table .strike-red::before,
.flex-table .strike-red::after{
	content: '';
	position: absolute;
	top:50%;
	left:0;
	width: 100%;
	height: 1px;
	background-color: red;
}
.flex-table .strike-red::before{
	transform: rotate(15deg);
}
.flex-table .strike-red::after{
	transform: rotate(-15deg);
}
.center{
	text-align: center;
}
.footer-text{
	margin-top: 10px;
	color: white;
	text-transform: capitalize;
}
.iframe-box{
	width: 90vw;
	border-radius: 25px;
	
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-book {
    padding-top: clamp(11.25rem, 23.46vw, 18.75rem);
    padding-bottom: clamp(3.75rem, 7.82vw, 6.25rem);
    padding-left: 1rem;
    padding-right: 1rem;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  #hero-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 90, 0.7) 0%, rgba(20, 40, 70, 0.8) 100%);
    z-index: 1;
  }
  #hero-book .cs-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }
  #hero-book .cs-content {
    width: 100%;
    text-align: center;
  }
  #hero-book .cs-hero-header {
    margin-bottom: 3.75rem;
  }
  #hero-book .cs-hero-title {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 0.9375rem 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }
  #hero-book .cs-hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  #hero-book .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    gap: 2.5rem;
  }
  #hero-book .cs-card {
    border-radius: 1.25rem;
    padding: 2.5rem 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  #hero-book .cs-card:first-child {
    background: linear-gradient(135deg, rgba(139, 30, 30, 0.12) 0%, rgba(100, 20, 20, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  #hero-book .cs-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(20, 40, 80, 0.12) 0%, rgba(15, 30, 60, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  #hero-book .cs-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.12) 0%, rgba(80, 80, 80, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  #hero-book .cs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 1;
  }
  #hero-book .cs-card > * {
    position: relative;
    z-index: 2;
  }
  #hero-book .cs-title {
    font-size: 3rem;
    padding: 8px 0 0 0;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  #hero-book .cs-title-2 {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 900;
    line-height: .7em;
    margin: 0 0 2.25rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  #hero-book .cs-image-wrapper {
    width: 100%;
    height: 10rem;
    margin: 0 0 1.875rem 0;
    border-radius: 0.625rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3125rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
  #hero-book .cs-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    background: #ffffff;
  }
  #hero-book .cs-form-wrapper {
    width: 100%;
    height: 50rem;
    max-height: 90vh;
    border-radius: 0.625rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3125rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
  }
  #hero-book .cs-form-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 0.5rem !important;
    background: #fff;
    min-height: 48.75rem !important;
  }
  #hero-book .cs-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #hero-book .cs-description {
    font-size: 1.125rem;
    color: var(--bodyTextColorWhite);
    line-height: 1.5em;
    margin: 0;
    max-width: 25rem;
  }
  #hero-book .cs-button,
  #hero-book .cs-button-solid {
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    padding: 1rem 2rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
  }
  #hero-book .cs-button:hover,
  #hero-book .cs-button-solid:hover {
    background-color: var(--primaryLight);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  #nav-info{
	display:none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-book .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.875rem;
    row-gap: 2.5rem;
  }
  #hero-book .cs-card {
    width: calc(50% - (15/16rem));
  }
  #nav-info{
	display: block;
  }
}
/* Large Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #hero-book .cs-card-group {
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  #hero-book .cs-card {
    width: calc(33.333% - (27/16rem));
    min-height: 56.25rem;
  }
  #hero-book .cs-title {
    font-size: 3.5rem;
  }
  #hero-book .cs-image-wrapper {
    height: 11.25rem;
  }
  #hero-book .cs-hero-title {
    font-size: 3.75rem;
  }
  #hero-book .cs-hero-subtitle {
    font-size: 2rem;
  }
  #hero-book .cs-form-wrapper {
    height: 50rem;
    max-height: 90vh;
  }
}
/*-- -------------------------- -->
<---        Compact Cards       -->
<--- -------------------------- -*/
/* Compact cards for book-now page without iframes */
@media only screen and (min-width: 0rem) {
  #hero-book .cs-card-compact {
    border-radius: 1.25rem;
    padding: 1.5625rem 1.25rem 0.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  #hero-book .cs-card-compact:first-child {
    background: linear-gradient(135deg, rgba(139, 30, 30, 0.12) 0%, rgba(100, 20, 20, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  #hero-book .cs-card-compact:nth-child(2) {
    background: linear-gradient(135deg, rgba(20, 40, 80, 0.12) 0%, rgba(15, 30, 60, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  #hero-book .cs-card-compact:nth-child(3) {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.12) 0%, rgba(80, 80, 80, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
  }
  #hero-book .cs-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 1;
  }
  #hero-book .cs-card-compact > * {
    position: relative;
    z-index: 2;
  }
}
@media only screen and (min-width: 48rem) {
  #hero-book .cs-card-compact {
    width: calc(50% - (15/16rem));
  }
}
@media only screen and (min-width: 75rem) {
  #hero-book .cs-card-compact {
    width: calc(33.333% - (27/16rem));
  }
}
/*-- -------------------------- -->
<---           Modal            -->
<--- -------------------------- -*/
/* Modal Styles */
@media only screen and (min-width: 0rem) {
  .modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }
  .modal-content {
    background-color: #ffffff;
    margin: 2vh auto;
    padding: 0;
    border-radius: 1.25rem;
    width: 95%;
    max-width: 50rem;
    max-height: 96vh;
    overflow: hidden;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
  }
  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .modal-close {
    position: absolute;
    top: 0.9375rem;
    right: 1.25rem;
    color: #666;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
  }
  .modal-close:hover {
    color: #000;
    background: #ffffff;
    transform: scale(1.1);
  }
  .modal-header {
    padding: 1.875rem 1.875rem 1.25rem 1.875rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  .modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--headerColor);
    text-align: center;
  }
  .modal-body {
    padding: 0.9375rem;
    max-height: 80vh;
    overflow-y: auto;
  }
  .modal-body iframe {
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    min-height: 40.625rem;
  }
}
/* Tablet and Desktop Modal Adjustments */
@media only screen and (min-width: 48rem) {
  .modal-content {
    margin: 3vh auto;
    width: 85%;
    max-width: 56.25rem;
    max-height: 94vh;
  }
  .modal-header h2 {
    font-size: 1.75rem;
  }
  .modal-body {
    padding: 1.25rem;
    max-height: 78vh;
  }
  .modal-body iframe {
    height: 43.75rem;
    min-height: 43.75rem;
  }
}
/* Dark Mode Modal */
@media only screen and (min-width: 0rem) {
  body.dark-mode .modal {
    background-color: rgba(0, 0, 0, 0.9);
  }
  body.dark-mode .modal-content {
    background-color: #2a2a2a;
    border: 1px solid #444;
  }
  body.dark-mode .modal-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-bottom: 1px solid #444;
  }
  body.dark-mode .modal-header h2 {
    color: #ffffff;
  }
  body.dark-mode .modal-close {
    color: #ccc;
    background: rgba(42, 42, 42, 0.9);
  }
  body.dark-mode .modal-close:hover {
    color: #fff;
    background: #2a2a2a;
  }
}
/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #stats-315 {
    padding: var(--sectionPadding);
    background-color: #E2EAEC;
  }
  #stats-315 .cs-card-group {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 37.5rem;
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
  }
  #stats-315 .cs-item {
    list-style: none;
    /* set fixed width so they can all be aligned on the left */
    width: 14.6875rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #stats-315 .cs-picture {
    width: 5rem;
    height: 5rem;
    /* 12px - 20px */
    margin-right: clamp(0.75rem, 3vw, 1.25rem);
    border-radius: 50%;
    border: 1px solid #CFD0D1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #stats-315 .cs-icon {
    width: 2.5rem;
    height: auto;
  }
  #stats-315 .cs-flex-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  #stats-315 .cs-number {
    font-size: var(--headerFontSize);
    color: var(--headerColor);
    font-weight: 900;
    line-height: 1.2em;
    margin: 0;
    display: block;
    white-space: nowrap;
  }
  #stats-315 .cs-stat {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    display: block;
    white-space: nowrap;
  }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
  #stats-315 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.25rem;
    row-gap: 2rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #stats-315 .cs-card-group {
    max-width: 80rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #stats-315 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #stats-315 .cs-number,
  body.dark-mode #stats-315 .cs-stat {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #stats-315 .cs-icon {
    /* make so bright it turns white */
    filter: brightness(1000%);
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #reviews-1234 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #reviews-1234 .cs-container {
    width: 94%;
    max-width: 70rem;
    margin: auto;
  }
  #reviews-1234 .cs-content {
    margin-bottom: 2.5rem;
  }
  #reviews-1234 .cs-topper {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
  }
  #reviews-1234 .cs-title {
    font-size: var(--headerFontSize);
    color: var(--headerColor);
    font-weight: 900;
    margin: 0 0 1rem 0;
	text-align: center;
  }
  #reviews-1234 .cs-review-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #reviews-1234 .cs-review {
    background-color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }
  #reviews-1234 .cs-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  #reviews-1234 .cs-name {
    font-weight: 600;
    margin: 0;
  }
  #reviews-1234 .cs-date {
    font-size: 0.875rem;
    color: #777;
    margin: 0;
  }
  #reviews-1234 .cs-google-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  #reviews-1234 .cs-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  #reviews-1234 .cs-stars img {
    width: 1rem;
    height: 1rem;
  }
  #reviews-1234 .cs-review-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 48rem) {
  #reviews-1234 .cs-review-group {
    grid-template-columns: repeat(3, 1fr);
  }
  #reviews-1234 .cs-review {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #reviews-1234 .cs-review:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (min-width: 48rem) {
  #reviews-1234 .cs-container {
    max-width: 80rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-1234 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #reviews-1234 .cs-review {
    background-color: #1f1f1f;
  }
  body.dark-mode #reviews-1234 .cs-name,
  body.dark-mode #reviews-1234 .cs-review-text {
    color: #f1f1f1;
  }
  body.dark-mode #reviews-1234 .cs-date {
    color: #aaa;
  }
  body.dark-mode #reviews-1234 .cs-topper,
  body.dark-mode #reviews-1234 .cs-title {
    color: #ffffff;
  }
}