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

:root {
    --primary-color: #2d5016;
    --secondary-color: #8b6f47;
    --accent-color: #c19a6b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

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

.split-text,
.split-image {
    flex: 1 1 400px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

.navbar {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

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

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

section {
    padding: 80px 0;
}

.intro-narrative {
    background-color: var(--bg-light);
}

.intro-narrative h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-narrative p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-showcase {
    background-color: var(--bg-white);
}

.showcase-intro {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.showcase-intro p {
    font-size: 18px;
    color: var(--text-muted);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.trust-builder {
    background-color: var(--bg-light);
}

.trust-builder h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-builder p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-builder blockquote {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-sm);
}

.trust-builder cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.services-pricing {
    background-color: var(--bg-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.price-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

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

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.price-card > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.testimonials-inline {
    background-color: var(--bg-light);
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.testimonial-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-item cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.process-visual {
    background-color: var(--bg-white);
}

.process-visual h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.process-step {
    flex: 1 1 240px;
    max-width: 280px;
    text-align: center;
    padding: 32px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.process-step:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-sticky-section {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-sticky-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-sticky-section p {
    font-size: 18px;
    color: var(--text-light);
}

.form-section {
    background-color: var(--bg-white);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row .form-group {
    flex: 1 1 200px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: var(--bg-white);
}

.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, 80, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    margin-bottom: 28px;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.final-cta {
    background-color: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: bottom 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.sticky-cta.visible {
    bottom: 20px;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    background-color: var(--bg-white);
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-card {
    flex: 1 1 260px;
    max-width: 300px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    background-color: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.team-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.team-member .role {
    padding: 0 20px 12px;
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p:not(.role) {
    padding: 0 20px 24px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.workshop-section {
    background-color: var(--bg-light);
}

.workshop-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.workshop-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
}

.workshop-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.philosophy-section {
    background-color: var(--bg-white);
    text-align: center;
}

.philosophy-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.large-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 32px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-about {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-detail {
    padding: 100px 0;
}

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

.service-detail h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-lead {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.5;
}

.service-detail p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-includes {
    margin: 40px 0;
    padding: 28px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.service-detail.bg-light .service-includes {
    background-color: var(--bg-white);
}

.service-detail:not(.bg-light) .service-includes {
    background-color: var(--bg-light);
}

.service-includes h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin-top: 40px;
}

.price-tag {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.service-detail.bg-light .price-tag {
    background-color: var(--bg-white);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-details {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.cta-services {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-main {
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info,
.contact-map {
    flex: 1 1 400px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-info > p,
.contact-map > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.small-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.map-placeholder {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.map-directions h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.map-directions p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.visit-workshop {
    background-color: var(--bg-light);
    text-align: center;
}

.visit-workshop h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.visit-workshop p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.visit-cta {
    margin-top: 32px;
}

.faq-section {
    background-color: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.faq-item {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-final-cta {
    background-color: var(--bg-light);
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 40px;
}

.legal-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.update-date {
    font-size: 14px;
    opacity: 0.9;
}

.legal-content {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 8px;
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.thanks-hero {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.thanks-hero.center {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-info {
    background-color: var(--bg-light);
}

.info-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-selection {
    margin-top: 40px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.service-selection h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-selection p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.thanks-meanwhile {
    background-color: var(--bg-white);
}

.thanks-meanwhile h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.meanwhile-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.meanwhile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.meanwhile-card h3 {
    padding: 24px 24px 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.meanwhile-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.link-arrow {
    display: inline-block;
    padding: 0 24px 24px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.link-arrow::after {
    content: ' →';
}

.thanks-urgent {
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-urgent h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-urgent p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.email-large {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0;
}

.email-large a {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .hero-visual {
        height: 400px;
    }

    section {
        padding: 60px 0;
    }

    .intro-narrative h2,
    .trust-builder h2,
    .about-intro h2,
    .service-detail h2 {
        font-size: 28px;
    }

    .showcase-intro h2,
    .section-header-center h2,
    .testimonials-inline h2,
    .process-visual h2,
    .values-section h2,
    .team-section h2,
    .workshop-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .cta-sticky-section h2,
    .final-cta h2,
    .philosophy-section h2,
    .cta-about h2,
    .cta-services h2,
    .visit-workshop h2,
    .contact-final-cta h2,
    .thanks-meanwhile h2,
    .thanks-urgent h2 {
        font-size: 28px;
    }

    .page-header h1,
    .thanks-hero h1 {
        font-size: 36px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

    .container-split {
        gap: 40px;
    }

    .large-quote {
        font-size: 20px;
        padding: 24px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .price-amount {
        font-size: 36px;
    }

    .info-card {
        padding: 32px 24px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thanks-meanwhile h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 26px;
    }

    .page-header h1,
    .thanks-hero h1 {
        font-size: 28px;
    }

    .showcase-intro h2,
    .section-header-center h2,
    .testimonials-inline h2,
    .process-visual h2,
    .values-section h2,
    .team-section h2,
    .workshop-section h2,
    .faq-section h2,
    .thanks-meanwhile h2 {
        font-size: 26px;
    }

    .cta-primary,
    .cta-secondary,
    .btn-submit {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .price-card {
        padding: 24px;
    }

    .info-card {
        padding: 24px 20px;
    }
}