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

:root {
    --primary-green: #2d5f3f;
    --secondary-green: #4a8560;
    --accent-green: #6ba583;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-bg: #f8f9f7;
    --white: #ffffff;
    --border-color: #e0e4df;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 12px 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;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.btn-cookie-accept {
    background: var(--secondary-green);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: var(--primary-green);
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--medium-text);
    position: relative;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: var(--light-bg);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: var(--primary-green);
    color: var(--white);
}

.cta-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.cta-inline {
    font-weight: 600;
    color: var(--secondary-green);
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 7rem 5%;
}

.intro-image {
    flex: 0.9;
    padding-right: 5%;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-text {
    flex: 1.1;
    padding-left: 3%;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.why-section-split {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 6rem 5%;
}

.why-section-split.reverse {
    flex-direction: row-reverse;
}

.why-text,
.why-image {
    flex: 1;
}

.why-text {
    padding-right: 5%;
}

.why-section-split.reverse .why-text {
    padding-right: 0;
    padding-left: 5%;
}

.why-text h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--medium-text);
    border-bottom: 1px solid var(--border-color);
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.why-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.services-preview {
    padding: 7rem 5%;
    background: var(--white);
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-green);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    flex: 1;
    min-width: 200px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-green);
    white-space: nowrap;
}

.service-card p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.6;
}

.services-cta-block {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.services-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--medium-text);
}

.testimonial-split {
    display: flex;
    align-items: stretch;
    background: var(--primary-green);
    color: var(--white);
    min-height: 500px;
}

.testimonial-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1.05rem;
    opacity: 0.9;
}

.testimonial-image {
    flex: 0.8;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.process-section {
    padding: 7rem 5%;
    background: var(--white);
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1 1 calc(25% - 2.5rem);
    min-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.trust-image,
.trust-content {
    flex: 1;
}

.trust-image {
    padding-right: 5%;
}

.trust-split.reverse .trust-image {
    padding-right: 0;
    padding-left: 5%;
}

.trust-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.trust-content p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.form-section {
    padding: 7rem 5%;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 4rem;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(74, 133, 96, 0.1);
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.footer-split {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-green);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background: var(--light-bg);
}

.hero-text {
    flex: 1.2;
    padding: 5rem 7%;
}

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

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

.story-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
}

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

.story-content {
    flex: 1;
    padding-right: 5%;
}

.story-split.reverse .story-content {
    padding-right: 0;
    padding-left: 5%;
}

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

.story-content p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-split {
    display: flex;
    align-items: flex-start;
    padding: 6rem 5%;
    background: var(--white);
}

.values-image {
    flex: 0.9;
    padding-right: 5%;
}

.values-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-content {
    flex: 1.1;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    color: var(--primary-green);
}

.value-item p {
    color: var(--medium-text);
    font-size: 1rem;
}

.team-section {
    padding: 7rem 5%;
    background: var(--light-bg);
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 4rem;
}

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

.team-member {
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 260px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member .role {
    font-size: 0.9rem;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.approach-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background: var(--white);
}

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

.approach-content {
    flex: 1;
    padding-right: 5%;
}

.approach-split.reverse .approach-content {
    padding-right: 0;
    padding-left: 5%;
}

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

.approach-content p {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-section {
    padding: 7rem 5%;
    background: var(--light-bg);
}

.philosophy-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.philosophy-item {
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-green);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.philosophy-item p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.cta-section-alt {
    padding: 6rem 5%;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-alt p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section-alt .cta-primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta-section-alt .cta-primary:hover {
    background: var(--light-bg);
}

.services-hero {
    padding: 6rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

.services-hero p {
    font-size: 1.2rem;
    color: var(--medium-text);
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

.service-visual {
    flex: 1;
    padding-right: 5%;
}

.service-detail-split.reverse .service-visual {
    padding-right: 0;
    padding-left: 5%;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-info > p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--medium-text);
}

.service-includes li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
}

.service-note {
    font-size: 0.9rem;
    color: var(--medium-text);
    font-style: italic;
    margin-top: 1.5rem;
}

.pricing-note-section {
    padding: 7rem 5%;
    background: var(--light-bg);
}

.pricing-note-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-note-section > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 4rem;
}

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

.reason {
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 260px;
    text-align: center;
}

.reason h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.reason p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.packages-comparison {
    padding: 7rem 5%;
    background: var(--white);
}

.packages-comparison h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 4rem;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    justify-content: center;
}

.package-card {
    flex: 1 1 calc(33.33% - 1.5rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border-color: var(--secondary-green);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.package-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-green);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-price {
    font-size: 1.8rem;
    color: var(--secondary-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--medium-text);
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
}

.package-note {
    font-size: 0.85rem;
    color: var(--medium-text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.packages-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--medium-text);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero {
    padding: 6rem 5%;
    background: var(--light-bg);
    text-align: center;
}

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

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

.contact-split {
    display: flex;
    align-items: flex-start;
    padding: 6rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.contact-block a {
    color: var(--secondary-green);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--medium-text);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-cta-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.contact-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.contact-cta-box p {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 7rem 5%;
    background: var(--light-bg);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.faq-item p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.map-placeholder {
    padding: 7rem 5%;
    background: var(--white);
}

.map-placeholder h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-placeholder > p {
    text-align: center;
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 3rem;
}

.map-box {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background: var(--light-bg);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-note {
    color: var(--medium-text);
    font-style: italic;
}

.thanks-section {
    padding: 7rem 5%;
    background: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-green);
    color: var(--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;
    font-weight: 700;
}

.thanks-main {
    font-size: 1.3rem;
    color: var(--medium-text);
    margin-bottom: 1rem;
}

.thanks-content > p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
}

.service-selected {
    margin: 2rem 0;
}

.service-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-green);
}

.thanks-next {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 0.8rem 0 0.8rem 3rem;
    position: relative;
    font-size: 1rem;
    color: var(--medium-text);
    border-bottom: 1px solid var(--border-color);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.thanks-reassurance {
    padding: 7rem 5%;
    background: var(--white);
}

.thanks-reassurance h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.reassurance-item {
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 260px;
    text-align: center;
}

.reassurance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.reassurance-item p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.legal-page {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-updated {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

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

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

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

.legal-content li {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-green);
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-asymmetric,
    .why-section-split,
    .testimonial-split,
    .trust-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .why-text,
    .trust-content,
    .story-content,
    .values-content,
    .approach-content,
    .service-info,
    .contact-info {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .intro-image,
    .why-image,
    .trust-image,
    .story-image,
    .values-image,
    .approach-image,
    .service-visual,
    .contact-visual {
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-top: 2rem;
    }

    .hero-content h1,
    .hero-text h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .services-preview h2,
    .process-section h2,
    .team-section h2,
    .philosophy-section h2,
    .packages-comparison h2 {
        font-size: 2.2rem;
    }

    .intro-text h2,
    .why-text h2,
    .trust-content h2,
    .story-content h2,
    .values-content h2,
    .approach-content h2,
    .service-info h2 {
        font-size: 2rem;
    }

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

    .package-card.featured {
        transform: scale(1);
    }

    .nav-right {
        gap: 1.2rem;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-content,
    .intro-text,
    .why-text,
    .process-section,
    .trust-content,
    .form-section,
    .story-content,
    .values-content,
    .team-section,
    .approach-content,
    .philosophy-section,
    .services-preview,
    .pricing-note-section,
    .packages-comparison,
    .contact-split,
    .faq-section,
    .thanks-section,
    .legal-page {
        padding: 4rem 5%;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 1.8rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .nav-right {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}
