/* Reset and Base Styles */
html {
    scroll-padding-top: 10.5rem;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #A36260;
    /* Dusty Rose */
    --secondary-color: #E2A096;
    /* Soft Peach */
    --accent-color: #2c5530;
    /* Keep the green for specific medical/natural vibes if needed, or replace */
    --text-color: #5d5d5d;
    /* Softer grey */
    --bg-light: #F9F9FB;
    /* Very light grey/white */
    --bg-rose: #EADDD8;
    /* Beige/Rose */
    --white: #FFFFFF;
    --font-heading: 'Merriweather', 'Times New Roman', serif;
    --font-body: 'Raleway', 'Arial', sans-serif;
    --border-radius: 20px;
    --shadow-soft: 0 10px 30px rgba(163, 98, 96, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-light);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 400;
}

/* Add a decorative line under H2 like the reference often has */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

p {
    margin-bottom: 1.5rem;
}

.intro-text {
    text-align: center;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 160, 150, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    /* Reduced bottom margin */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-logo {
    height: 90px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

.nav {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

/* Redesigned Contact Info */
.contact-info {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.contact-header-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--secondary-color);
}

.separator {
    color: var(--secondary-color);
    font-weight: 300;
}

.header-icon {
    width: 1.1rem;
    height: 1.1rem;
    background-color: var(--secondary-color);
}

.header-icon-sm {
    width: 0.9rem;
    height: 0.9rem;
    background-color: var(--secondary-color);
    margin-right: 0.3rem;
    margin-top: 2px;
    /* Slight optical alignment */
}

/* Header Locations Stack */
.header-locations {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
}

.header-location-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.header-location-name {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

.header-days {
    display: flex;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.header-day-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-contact {
    display: none;
}

/* Hero Section */
.hero {
    background-color: var(--bg-rose);
    /* Use the beige/rose from the site */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Text wider */
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.hero-text h2::after {
    display: none;
}

.hero-text p {
    font-size: 1.2rem;
    color: #6a5a5a;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.services-list span {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.specialties {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
}

.hero-image {
    position: relative;
    width: 100%;
    /* Keep the aspect ratio or height consistent */
    height: auto;
    aspect-ratio: 4/3;
    /* Landscape orientation */
    max-width: 500px;
    /* Limit width */
    margin: 0 auto;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-img.active {
    opacity: 1;
    z-index: 2;
}

@media (min-width: 769px) {
    .hero-image {
        aspect-ratio: auto;
        height: 350px;
        /* Reduced height for landscape look */
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-image {
        /* aspect ratio handles height */
        width: 100%;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
}

.service-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    background-color: var(--bg-rose);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-svg-mask {
    width: 60%;
    height: 60%;
    background-color: var(--primary-color);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-card:hover .service-svg-mask {
    background-color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Expandable content styles */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-top: -1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease-in-out;
}

.expandable-content.expanded {
    max-height: none;
    /* Allow unlimited height when expanded */
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin: 1rem 0 0 0;
}

.content-wrapper h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-wrapper h4:first-child {
    margin-top: 0;
}

.content-wrapper ul {
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}

.content-wrapper li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

/* Button toggle state */
/* Button text will be changed via JavaScript */
.toggle-btn.expanded {
    display: inline-block;
}

.toggle-btn:not(.expanded) {
    display: inline-block;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-rose);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 25px rgba(163, 98, 96, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(163, 98, 96, 0.15);
    background-color: var(--bg-light);
}

.about-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.timeline {
    list-style: none;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.timeline-item.left {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.timeline-item.right {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.timeline-year {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    max-width: 300px;
    box-shadow: var(--shadow-soft);
}

/* Techniques Section */
.techniques {
    padding: 6rem 0;
    background-color: var(--white);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.technique-card {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.technique-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
}

.technique-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Consultation Section */
.consultation {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.consultation-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.category {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 5px solid var(--secondary-color);
    transition: all 0.4s ease;
}

.category:hover {
    transform: translateY(-5px);
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.category li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.category li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.prep-consultation {
    background-color: var(--bg-rose);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
}

.prep-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 500;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.prep-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
}

.carnet-sante {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.prep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.prep-icon {
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prep-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prep-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.prep-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.prep-details li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
}

.prep-details li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.prep-note {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    font-style: italic;
}

.towel-tip {
    margin-top: 2rem;
    text-align: center;
}

.towel-tip p {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: rgba(44, 85, 48, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    border: 1px solid rgba(44, 85, 48, 0.2);
}

.prep-svg-mask {
    width: 70%;
    height: 70%;
    background-color: var(--primary-color);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.4s ease;
}

.prep-card:hover .prep-svg-mask {
    background-color: var(--secondary-color);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--white);
}

.pricing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.price-card {
    background-color: var(--bg-light);
    padding: 4rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(163, 98, 96, 0.15);
    background-color: var(--white);
}

.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 1.5rem 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-rose);
}

.locations-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(163, 98, 96, 0.15);
}

.location-info {
    padding: 2rem;
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.location-details {
    margin-bottom: 2rem;
}

.location-details p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
}

.location-details p.address {
    font-size: 1.1rem;
    font-weight: 500;
}

.location-details p.phone {
    font-size: 1.1rem;
    font-weight: 500;
}

.location-details p.days {
    font-size: 1.05rem;
    font-weight: 500;
}

.location-details p.hours {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-style: italic;
}

.icon-svg {
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--primary-color);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.days-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.days-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.day-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
}

.location-map {
    flex: 1;
    min-height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(163, 98, 96, 0.15);
    margin: 0 1rem 1rem;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--border-radius);
}

.location-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    border: 2px solid transparent;
    font-family: var(--font-body);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-maps {
    background-color: var(--secondary-color);
    color: white;
}

.btn-maps:hover {
    background-color: var(--primary-color);
}

.btn-call {
    background-color: var(--primary-color);
    color: white;
}

.btn-call:hover {
    background-color: #8a4a48;
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.contact-footer {
    margin-top: 3rem;
    text-align: center;
}

.reassurance {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

/* Legal Notices Section */
.legal-notices {
    padding: 6rem 0;
    background-color: var(--white);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.legal-section h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-link {
    color: #00FFAA !important;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    text-decoration-color: #00FFAA;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-content .contact-info {
        display: none;
        /* Hide top contact info on smaller screens */
    }

    .nav {
        display: none;
        /* Mobile menu implementation needed here */
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav.active .mobile-contact {
        display: block;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h2 {
        text-align: center;
    }

    .services-list {
        justify-content: center;
    }

    .pricing-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .locations-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-card {
        min-height: auto;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-actions {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-cta {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .map-container {
        min-height: 250px;
        max-height: 300px;
    }

    .map-container iframe {
        height: 250px;
    }



    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .prep-grid {
        grid-template-columns: 1fr;
        /* Stack cards vertically on mobile */
        gap: 1.5rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer p {
        font-size: 0.9rem;
    }
}

/* Mobile font improvements for better readability */
@media (max-width: 768px) {
    body {
        font-size: 1.1rem;
        /* Slightly larger body text on mobile */
        line-height: 1.7;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}

/* Extra narrow mobile devices (e.g., iPhone 12/13 mini at 390px) */
@media (max-width: 390px) {
    .mobile-menu-btn {
        margin-right: 1rem;
    }

    .nav.active {
        padding: 1.5rem 1rem;
    }

    .nav.active ul {
        gap: 1rem;
    }

    body {
        font-size: 1rem;
        /* Ensure minimum readable size */
    }
}

/* Utility Classes for Mobile Contact */
.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}