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

:root {
    --color-primary: #2d5a4f;
    --color-secondary: #e8a87c;
    --color-accent: #c07855;
    --color-dark: #1a1a1a;
    --color-light: #f8f6f3;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-floating.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    margin: 4px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem 5%;
    position: relative;
}

.hero-content-left {
    flex: 0 0 55%;
    padding-right: 3rem;
    z-index: 10;
}

.hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.btn-primary-large:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 90, 79, 0.3);
}

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

.hero-image-right {
    flex: 0 0 45%;
    position: relative;
    margin-top: -5rem;
    margin-left: -2rem;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-offset {
    padding: 5rem 5% 3rem 15%;
    background: var(--color-light);
}

.intro-narrow {
    max-width: 700px;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    line-height: 1.3;
}

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

.visual-break {
    padding: 6rem 5%;
    background: white;
}

.visual-grid-asymmetric {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.visual-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.visual-item.large {
    flex: 0 0 calc(55% - 1rem);
    height: 600px;
}

.visual-item.small-top {
    flex: 0 0 calc(45% - 1rem);
    height: 280px;
    margin-top: -3rem;
}

.visual-item.small-bottom {
    flex: 0 0 calc(45% - 1rem);
    height: 280px;
    margin-top: 1rem;
}

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

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.visual-overlay h3 {
    font-size: 1.5rem;
}

.visual-overlay p {
    font-size: 1rem;
}

.story-flow {
    padding: 6rem 8% 6rem 5%;
    background: var(--color-primary);
    color: white;
}

.story-content-wide {
    max-width: 1200px;
}

.story-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-flow h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.story-columns {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.story-col {
    flex: 1;
}

.story-col p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-offset {
    padding: 4rem 5% 4rem 20%;
    background: var(--color-light);
}

.testimonial-card-float {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 650px;
    transform: rotate(-1deg);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
}

.services-preview-asymmetric {
    padding: 6rem 5%;
    background: white;
}

.services-header-offset {
    max-width: 800px;
    margin-bottom: 4rem;
    padding-left: 10%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.services-cards-stagger {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-left: -5%;
}

.service-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    background: var(--color-light);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.service-card.selected {
    background: var(--color-primary);
    color: white;
}

.service-card.selected h3,
.service-card.selected p,
.service-card.selected li {
    color: white;
}

.service-card.selected .service-price {
    color: var(--color-secondary);
}

.service-content {
    flex: 1;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-card.selected .service-features li:before {
    color: var(--color-secondary);
}

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

.btn-service-select {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.service-card.selected .btn-service-select {
    background: white;
    color: var(--color-primary);
}

.form-section-offset {
    padding: 6rem 5% 6rem 12%;
    background: var(--color-light);
}

.form-container-asymmetric {
    max-width: 700px;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.1);
}

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

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

.form-intro p {
    color: var(--color-text-light);
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit-large {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-large:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 90, 79, 0.3);
}

.trust-elements {
    padding: 5rem 5%;
    background: white;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.cta-sticky-reveal {
    padding: 5rem 5%;
    background: var(--color-dark);
    text-align: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2rem;
}

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

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

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem 5%;
    background: var(--color-light);
}

.thanks-content-offset {
    max-width: 650px;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.1);
}

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

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

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

.service-confirm {
    background: var(--color-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

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

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

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

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

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.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(--color-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: var(--color-accent);
}

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

.btn-cookie-reject:hover {
    background: white;
    color: var(--color-dark);
}

.page-hero-services {
    padding: 8rem 5% 4rem 5%;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-detailed {
    padding: 5rem 5%;
    background: white;
}

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

.services-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

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

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

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

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

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

.service-detail-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--color-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 1.5rem 0;
    font-style: italic;
}

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

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

.services-cta {
    padding: 5rem 5%;
    background: var(--color-light);
    text-align: center;
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

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

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

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

.about-hero {
    padding: 8rem 5% 4rem 15%;
    background: var(--color-light);
}

.about-hero-content {
    max-width: 800px;
}

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

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

.about-story {
    padding: 6rem 5%;
    background: white;
}

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

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

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

.story-image-float {
    flex: 0 0 400px;
    margin-top: -4rem;
}

.story-image-float img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.philosophy-section {
    padding: 6rem 5%;
    background: var(--color-primary);
    color: white;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.philosophy-item {
    flex: 0 0 calc(50% - 1.5rem);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.team-section {
    padding: 6rem 5%;
    background: white;
}

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

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

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

.team-members {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 300px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.member-role {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.values-visual {
    padding: 6rem 5%;
    background: var(--color-light);
}

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

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

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

.about-cta {
    padding: 5rem 5%;
    background: var(--color-dark);
    text-align: center;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 8rem 5% 4rem 5%;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

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

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-info-section {
    padding: 5rem 5%;
    background: white;
}

.contact-grid-offset {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

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

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

.info-note p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}

.contact-map {
    flex: 0 0 500px;
    position: relative;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 1.5rem;
    color: white;
}

.contact-directions {
    padding: 5rem 5%;
    background: var(--color-light);
}

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

.directions-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-dark);
}

.directions-methods {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 300px;
}

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

.direction-item p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-faq {
    padding: 5rem 5%;
    background: white;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-dark);
}

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

.faq-item {
    flex: 0 0 calc(50% - 1.5rem);
}

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

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

.contact-cta-final {
    padding: 5rem 5%;
    background: var(--color-primary);
    text-align: center;
}

.cta-final-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.legal-page {
    padding: 8rem 5% 4rem 5%;
    background: white;
}

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

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

.legal-date {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: var(--color-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--color-dark);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
    color: var(--color-dark);
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

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

.legal-contact p {
    margin: 0;
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 7rem 5% 3rem 5%;
    }

    .hero-content-left {
        flex: none;
        padding-right: 0;
        margin-bottom: 3rem;
    }

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

    .hero-image-right {
        flex: none;
        width: 100%;
        margin: 0;
    }

    .visual-grid-asymmetric {
        flex-direction: column;
    }

    .visual-item.large,
    .visual-item.small-top,
    .visual-item.small-bottom {
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    .story-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .services-cards-stagger {
        margin-left: 0;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

    .service-detail-image {
        flex: none;
        width: 100%;
    }

    .story-layout-offset {
        flex-direction: column;
    }

    .story-image-float {
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    .philosophy-item {
        flex: none;
        width: 100%;
    }

    .contact-grid-offset {
        flex-direction: column;
    }

    .contact-map {
        flex: none;
        width: 100%;
    }

    .faq-item {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-light);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .intro-offset {
        padding: 3rem 5%;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .services-header-offset h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: none;
        width: 100%;
    }

    .form-section-offset {
        padding: 4rem 5%;
    }

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

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .page-hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .directions-methods {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .testimonial-offset {
        padding: 3rem 5%;
    }

    .testimonial-card-float {
        padding: 2rem;
        transform: none;
    }

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