:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b4f3a;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: #234a3d;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-float {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    max-width: 650px;
    transform: rotate(3deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.intro-block {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.intro-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.services-showcase {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

.showcase-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.showcase-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-card.offset-top {
    margin-top: -2rem;
}

.service-card.offset-bottom {
    margin-top: 2rem;
}

.service-card.offset-center {
    margin-top: 1rem;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-cta {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.why-choose-us {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.why-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.why-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.why-visual {
    flex: 0 0 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}

.testimonials-floating {
    padding: 7rem 2rem;
    background: var(--bg-white);
}

.testimonials-floating h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 700px;
}

.testimonial-card.float-left {
    align-self: flex-start;
    margin-left: 5%;
}

.testimonial-card.float-right {
    align-self: flex-end;
    margin-right: 5%;
}

.testimonial-card.float-center {
    align-self: center;
}

.testimonial-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.booking-section {
    padding: 7rem 2rem;
    background: var(--bg-light);
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.booking-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 1.2rem 2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.final-cta-sticky.show {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sticky-cta-content p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.btn-cta-sticky {
    background: white;
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-sticky:hover {
    background: var(--bg-light);
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--bg-light);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--bg-light);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--bg-light);
    font-size: 0.9rem;
}

.page-hero-alt {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero-text-block {
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-block h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-price {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-banner-asymmetric {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.cta-content-overlap {
    max-width: 700px;
    margin-left: 10%;
    text-align: left;
}

.cta-content-overlap h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-content-overlap p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-hero {
    padding: 5rem 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-hero-image {
    flex: 0 0 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.story-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.story-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-intro {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.team-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-visual {
    flex: 0 0 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.certifications {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.cert-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.cert-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cert-wrapper > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cert-list {
    list-style: none;
    margin: 2rem 0;
}

.cert-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.cert-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.mission-statement {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-mission {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-mission:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.testimonials-about {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.testimonials-about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1.67rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.location-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.location-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-details p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-areas {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.service-areas h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.areas-content {
    max-width: 800px;
    margin: 0 auto;
}

.areas-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.areas-list {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.areas-list li {
    background: var(--bg-white);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-contact {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.thanks-hero {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-selected {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.step-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-info {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.info-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.info-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.explore-more {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.explore-more h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.explore-links {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.explore-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.explore-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.explore-card p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-float {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        transform: none;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-center {
        margin-top: 0;
    }

    .why-content-split,
    .team-content-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .why-visual,
    .team-visual {
        flex: 1 1 auto;
        width: 100%;
        transform: none;
    }

    .form-wrapper-asymmetric {
        margin-left: 0;
    }

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-visual {
        flex: 1 1 auto;
    }

    .about-hero {
        flex-direction: column;
        gap: 2rem;
    }

    .about-hero-image {
        flex: 1 1 auto;
        width: 100%;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .steps-grid,
    .explore-links {
        flex-direction: column;
    }

    .cta-content-overlap {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .contact-card {
        flex: 1 1 100%;
    }
}