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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.02em;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.ad-disclosure span {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5a3d;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    color: #4a4a4a;
}

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f5f5f5;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Intro Split Section */
.intro-split {
    display: flex;
    background-color: #ffffff;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

/* Services Overview Section */
.services-overview {
    background-color: #f8f9f8;
    padding: 5rem 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Services Grid Split */
.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a3d;
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.8rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

/* Form Section Split */
.form-section-split {
    display: flex;
    background-color: #ffffff;
}

.form-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #2d5a3d;
    display: flex;
    align-items: center;
}

.form-intro {
    max-width: 500px;
}

.form-intro h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e8ebe9;
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.form-container form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

/* Trust Split Section */
.trust-split {
    display: flex;
    background-color: #f8f9f8;
}

.trust-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.trust-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content-split {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #ffffff;
}

.hero-text-about {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f5f5f5;
}

.hero-text-about h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-text-about p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.hero-image-about {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.hero-image-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Story Split */
.about-story-split {
    display: flex;
    background-color: #ffffff;
}

.story-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Values Split */
.values-split {
    display: flex;
    background-color: #f8f9f8;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.values-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

/* Team Approach Section */
.team-approach {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.approach-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a3d;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Commitment Split */
.commitment-split {
    display: flex;
    background-color: #f8f9f8;
}

.commitment-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.commitment-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Services Page */
.services-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-detail-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5a3d;
    margin: 1.5rem 0;
}

.select-service-btn {
    padding: 0.9rem 2.2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

/* Service Guarantee */
.service-guarantee {
    background-color: #f8f9f8;
    padding: 5rem 2rem;
}

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

.guarantee-content-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.guarantee-content-center p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.cta-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
}

.cta-tertiary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.contact-split-layout {
    display: flex;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f8f9f8;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image-block {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.contact-approach {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.approach-center {
    max-width: 900px;
    margin: 0 auto;
}

.approach-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-center p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.visit-split {
    display: flex;
    background-color: #f8f9f8;
}

.visit-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.visit-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.visit-image {
    flex: 1;
    background-color: #e8ebe9;
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Thanks Page */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9f8;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

#serviceConfirmation {
    font-weight: 600;
    color: #2d5a3d;
    font-size: 1.15rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

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

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .trust-content h2,
    .values-content h2 {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ad-disclosure {
        order: -1;
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .trust-split,
    .page-hero-split,
    .about-story-split,
    .values-split,
    .commitment-split,
    .service-detail-split,
    .contact-split-layout,
    .visit-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .service-info,
    .form-content,
    .trust-content,
    .hero-text-about,
    .story-content,
    .values-content,
    .commitment-content,
    .service-detail-content,
    .contact-info-block,
    .visit-content {
        padding: 3rem 2rem;
    }

    .form-container {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

    .approach-split-grid {
        flex-direction: column;
    }

    .footer-content-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .split-content h2,
    .trust-content h2 {
        font-size: 1.6rem;
    }

    .service-info h3 {
        font-size: 1.3rem;
    }

    .price,
    .service-price {
        font-size: 1.2rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .steps-grid {
        flex-direction: column;
    }
}