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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f6f3;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0ddd9;
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

.hero-split {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

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

.hero-text {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.cta-primary:hover {
    background: #234a2f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

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

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

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

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    margin-bottom: 1.5rem;
}

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

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-inline:hover {
    text-decoration: underline;
}

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

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

.showcase-header h2 {
    margin-bottom: 1rem;
}

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

.grid-images {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.grid-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
}

.grid-item.large {
    flex: 1 1 100%;
    height: 500px;
}

.grid-item.wide {
    flex: 1 1 100%;
    height: 400px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-item:hover img {
    transform: scale(1.05);
}

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

.grid-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.grid-overlay p {
    font-size: 0.95rem;
}

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

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s;
}

.value-card.dark {
    background: var(--primary-color);
    color: var(--white);
}

.value-card.dark h3,
.value-card.dark .value-number {
    color: var(--white);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: inherit;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-centered {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--light-bg);
}

.cta-centered h2 {
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-centered p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-list-compact {
    margin: 2rem 0;
}

.service-item-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item-inline h4 {
    font-size: 1.15rem;
    font-weight: 500;
}

.price-tag {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

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

.testimonials-carousel h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card.featured {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

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

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
}

.process-visual {
    padding: 7rem 2rem;
    background: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.step-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.step-block.reverse {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
}

.step-visual img {
    border-radius: 8px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    margin-bottom: 1.5rem;
}

.form-intro p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

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

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

.final-cta-strip {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.strip-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.strip-content p {
    font-size: 1.05rem;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.sticky-cta a {
    display: block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.5);
}

.page-hero-about {
    margin-top: 80px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-overlay-text h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-overlay-text p {
    font-size: 1.15rem;
    line-height: 1.7;
}

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

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

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

.story-image {
    flex: 1;
}

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

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
    padding-left: 4rem;
    position: relative;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: var(--border-color);
}

.timeline-item:last-child:before {
    display: none;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.timeline-item h3 {
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.timeline-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 7rem 2rem;
    background: var(--white);
}

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

.team-intro h2 {
    margin-bottom: 1.5rem;
}

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

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

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--light-bg);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

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

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

.values-detailed h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.workshop-visual {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.workshop-text {
    flex: 1;
}

.workshop-text h2 {
    margin-bottom: 1.5rem;
}

.workshop-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.workshop-image {
    flex: 1;
}

.cta-about-bottom {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

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

.cta-about-bottom p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.services-hero h1 {
    margin-bottom: 1.5rem;
}

.services-hero p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-detail {
    padding: 5rem 2rem;
    background: var(--white);
}

.service-detail.reverse {
    background: var(--light-bg);
}

.service-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    margin-bottom: 1.5rem;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.features-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

.price-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

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

.btn-service-cta:hover {
    background: #234a2f;
    transform: translateY(-2px);
}

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

.service-cta-final h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 1rem;
}

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

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

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

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

.contact-card h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

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

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-overlay p {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.directions-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.direction-item {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.direction-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.direction-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.showroom-image {
    flex: 1;
}

.showroom-text {
    flex: 1;
}

.showroom-text h2 {
    margin-bottom: 1.5rem;
}

.showroom-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.showroom-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

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

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

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

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

.contact-cta-bottom h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta-bottom p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.thanks-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

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

.thanks-container h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.service-selected {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

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

.thanks-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.step-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    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.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.meanwhile-content h2 {
    margin-bottom: 1.5rem;
}

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

.meanwhile-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.link-card {
    flex: 1;
    max-width: 350px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.link-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--white);
}

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

.legal-container h1 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 6px;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

.legal-container a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

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

.legal-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-content,
    .split-container,
    .split-container.reverse,
    .form-container-split,
    .story-container,
    .workshop-split,
    .service-split,
    .service-detail.reverse .service-split,
    .showroom-content,
    .step-block,
    .step-block.reverse {
        flex-direction: column;
        gap: 2.5rem;
    }

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

    .values-split,
    .testimonial-grid,
    .directions-grid,
    .steps-grid,
    .meanwhile-links {
        flex-direction: column;
    }

    .grid-item {
        flex: 1 1 100%;
    }

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-table {
        font-size: 0.9rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .value-card {
        padding: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

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