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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7856;
    --accent-color: #6b9575;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.centered {
    text-align: center;
}

.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

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

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

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--light);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.cta-text {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.cta-text:hover {
    opacity: 0.7;
}

.cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.5rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
}

.intro-split {
    display: flex;
    align-items: center;
}

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

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

.split-image {
    overflow: hidden;
}

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

.split-content {
    padding: 5rem 4rem;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.split-content.dark {
    background: var(--primary-color);
    color: var(--white);
}

.split-content.dark h2,
.split-content.dark p {
    color: var(--white);
}

.philosophy-block {
    background: var(--light);
    padding: 6rem 0;
}

.philosophy-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.phil-text {
    flex: 1.5;
}

.phil-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.phil-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.phil-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}

.method-split {
    display: flex;
    align-items: stretch;
}

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

.method-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.method-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.services-showcase {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
}

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

.service-visual,
.service-info {
    flex: 1;
}

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

.service-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.service-card-split.reverse .service-info {
    background: var(--white);
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.testimonial-split {
    display: flex;
    align-items: stretch;
}

.testimonial-split .split-content {
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
}

.testimonial-card {
    max-width: 600px;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 1rem;
    opacity: 0.8;
}

.testimonial-img img {
    min-height: 500px;
}

.reality-check {
    padding: 6rem 0;
    background: var(--light);
}

.reality-grid {
    display: flex;
    gap: 3rem;
}

.reality-item {
    flex: 1;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
}

.reality-item.highlighted {
    background: var(--primary-color);
    color: var(--white);
}

.reality-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.reality-item.highlighted h3 {
    color: var(--white);
}

.reality-item p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    align-items: stretch;
}

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

.form-section {
    padding: 6rem 0;
    background: var(--light);
}

.form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-submit:hover {
    background: var(--secondary-color);
}

.final-cta-split {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
}

.final-cta-split .split-content {
    text-align: center;
}

.final-cta-split h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.final-cta-split p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content-left {
    flex: 1;
    padding: 4rem;
    background: var(--light);
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

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

.story-section {
    padding: 6rem 0;
}

.story-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.5;
}

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

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

.story-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.philosophy-deep {
    background: var(--light);
    padding: 6rem 0;
}

.philosophy-deep h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.principles-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.principle-card {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.principle-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.principle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.principle-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

.team-split {
    display: flex;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

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

.split-content-right {
    flex: 1;
    padding: 5rem 4rem;
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.values-section {
    padding: 6rem 0;
    background: var(--light);
}

.values-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.values-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
}

.impact-split {
    display: flex;
    align-items: stretch;
}

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

.impact-list {
    list-style: none;
    margin-top: 2rem;
}

.impact-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
    color: var(--gray);
}

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

.approach-timeline {
    padding: 6rem 0;
}

.approach-timeline h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.timeline-split {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

.cta-about {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-hero {
    background: var(--light);
}

.services-intro {
    padding: 4rem 0;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.15rem;
    color: var(--gray);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
}

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 4rem;
}

.split-content-left {
    background: var(--light);
}

.split-content-right {
    background: var(--white);
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-duration {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray);
}

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

.service-pricing-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.split-image-right {
    flex: 1;
    overflow: hidden;
}

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

.comparison-section {
    padding: 6rem 0;
    background: var(--light);
}

.comparison-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

.comparison-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

.services-form {
    background: var(--white);
}

.contact-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-left-contact {
    flex: 1;
    padding: 4rem;
    background: var(--light);
}

.hero-left-contact h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-right-contact {
    flex: 1;
    overflow: hidden;
}

.hero-right-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.contact-info-section {
    padding: 6rem 0;
}

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

.contact-details {
    flex: 1.5;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-note {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    font-size: 1rem;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.location-split {
    display: flex;
    align-items: stretch;
    background: var(--light);
}

.location-split .split-content {
    flex: 1;
    padding: 4rem;
}

.location-split h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-split p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.split-map {
    flex: 1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 4rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--gray);
}

.faq-contact {
    padding: 6rem 0;
}

.faq-contact h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray);
}

.cta-contact-final {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.cta-contact-final h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-contact-final p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--gray);
}

.thanks-info-split {
    padding: 6rem 0;
}

.thanks-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.timeline-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

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

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.thanks-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.selected-service-info {
    padding: 4rem 0;
    background: var(--light);
}

.service-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-name-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-note {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.while-waiting {
    padding: 6rem 0;
}

.while-waiting h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.while-waiting p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.preparation-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.preparation-list li {
    padding: 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    background: var(--light);
    border-radius: 4px;
}

.preparation-list li::before {
    content: '?';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-cta-split {
    display: flex;
    gap: 2rem;
    padding: 6rem 0;
    background: var(--light);
}

.thanks-cta-split .split-content {
    flex: 1;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.thanks-cta-split h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-cta-split p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.legal-header {
    padding: 4rem 0;
    background: var(--light);
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-meta {
    font-size: 1rem;
    color: var(--gray);
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

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

.legal-content a:hover {
    opacity: 0.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: var(--light);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--gray);
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-split,
    .intro-split,
    .method-split,
    .testimonial-split,
    .approach-split,
    .team-split,
    .impact-split,
    .service-detail-split,
    .contact-hero-split,
    .location-split,
    .page-hero-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .split-image,
    .split-content,
    .service-visual,
    .service-info {
        width: 100%;
    }

    .split-content,
    .service-info,
    .hero-left {
        padding: 3rem 2rem;
    }

    .philosophy-grid,
    .story-split,
    .reality-grid,
    .contact-split,
    .thanks-grid,
    .thanks-cta-split {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }

    .services-grid-split,
    .service-card-split {
        flex-direction: column;
    }
}

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

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

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
    }

    .hamburger {
        display: flex;
    }

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

    .section-title,
    .philosophy-deep h2,
    .values-section h2,
    .approach-timeline h2,
    .services-intro h2,
    .comparison-section h2,
    .faq-contact h2 {
        font-size: 2rem;
    }

    .split-content h2,
    .contact-details h2,
    .thanks-content h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .values-split-grid,
    .faq-grid-split,
    .comparison-grid {
        gap: 1rem;
    }

    .value-item,
    .faq-item,
    .comparison-item {
        min-width: 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

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

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

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-price {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}