/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2520;
    background-color: #fff;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1612;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1612;
    color: #f4f1ea;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.75rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8b7968;
    color: #fff;
}

.btn-accept:hover {
    background-color: #6b5d52;
}

.btn-reject {
    background-color: transparent;
    color: #f4f1ea;
    border: 2px solid #f4f1ea;
}

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

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 121, 104, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1612;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2520;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8b7968;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b7968;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1612;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f4f1ea 0%, #e5ddd1 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(139, 121, 104, 0.05), transparent);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content > div:first-child {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    max-width: 600px;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

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

.hero-section p {
    font-size: 1.25rem;
    color: #4a443e;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Page Hero */
.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #8b7968 0%, #6b5d52 100%);
    color: #f4f1ea;
    text-align: center;
}

.page-hero h1 {
    color: #f4f1ea;
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Buttons and CTAs */
.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7968;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #6b5d52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 121, 104, 0.3);
}

.cta-secondary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #8b7968;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #8b7968;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background-color: #8b7968;
    color: #fff;
}

/* Section Layouts */
section {
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.content-wrapper.narrow {
    max-width: 900px;
}

.dark-bg {
    background-color: #2a2520;
    color: #f4f1ea;
}

.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: #f4f1ea;
}

.light-bg {
    background-color: #f8f6f3;
}

/* Intro Section */
.intro-section {
    padding: 6rem 2rem;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
}

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

.section-header.centered {
    text-align: center;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8b7968;
    margin-bottom: 1rem;
}

.services-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 2.5rem;
    background-color: #fff;
    border: 1px solid #e5ddd1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 121, 104, 0.15);
    border-color: #8b7968;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 1rem;
    color: #4a443e;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b7968;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #8b7968;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: #6b5d52;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 2rem;
}

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

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

.content-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-right svg {
    width: 100%;
    height: auto;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

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

.testimonials-row {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    background-color: #fff;
    border-left: 4px solid #8b7968;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2a2520;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b5d52;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
}

.process-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7968;
    min-width: 80px;
}

.step h3 {
    color: #f4f1ea;
    margin-bottom: 0.75rem;
}

.step p {
    color: #d4c5b0;
    font-size: 1.05rem;
}

/* Secondary Services */
.secondary-services {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.services-compact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.compact-service {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e5ddd1;
}

.compact-service h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.compact-service p {
    font-size: 0.95rem;
    color: #4a443e;
    margin-bottom: 1.25rem;
}

.compact-service .price {
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #6b5d52 0%, #4a443e 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.cta-box h2 {
    color: #f4f1ea;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: #d4c5b0;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a443e;
}

.consultation-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e5ddd1;
}

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

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2520;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d4c5b0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7968;
    box-shadow: 0 0 0 3px rgba(139, 121, 104, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background-color: #8b7968;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6b5d52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 121, 104, 0.3);
}

/* Footer */
.main-footer {
    background-color: #1a1612;
    color: #d4c5b0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: #f4f1ea;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: #d4c5b0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #f4f1ea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 197, 176, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

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

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #8b7968;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(139, 121, 104, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #6b5d52;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 121, 104, 0.5);
}

/* Services Detail Page */
.services-detail {
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-visual {
    flex: 1;
    max-width: 450px;
}

.service-visual svg {
    width: 100%;
    height: auto;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #8b7968;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a443e;
    margin-bottom: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #4a443e;
}

.service-pricing {
    background-color: #f8f6f3;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b5d52;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7968;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #6b5d52;
}

.why-pricing {
    padding: 5rem 2rem;
}

.why-pricing h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.why-pricing p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Page */
.about-intro {
    padding: 6rem 2rem;
    background-color: #fff;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a443e;
}

.values-section {
    padding: 6rem 2rem;
}

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b7968;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a443e;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.team-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a443e;
}

.process-detail {
    padding: 6rem 2rem;
}

.process-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-detail-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-item h3 {
    color: #f4f1ea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-item p {
    color: #d4c5b0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.stats-section {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b7968;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #4a443e;
    font-weight: 600;
}

.recognition-section {
    padding: 6rem 2rem;
}

.recognition-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.recognition-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a443e;
}

/* Contact Page */
.contact-content {
    padding: 4rem 2rem;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-note {
    flex: 1;
    min-width: 300px;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8b7968;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a443e;
}

.info-block a {
    color: #8b7968;
    font-weight: 600;
}

.info-block a:hover {
    color: #6b5d52;
}

.note-content {
    background-color: #f8f6f3;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b7968;
}

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #2a2520;
}

.note-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a443e;
}

.map-section {
    padding: 0;
    background-color: #f8f6f3;
}

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

.map-placeholder svg {
    width: 100%;
    height: auto;
}

.faq-section {
    padding: 6rem 2rem;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #8b7968;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a443e;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f6f3;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1612;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a443e;
}

.next-steps {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7968;
    min-width: 50px;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 1rem;
    color: #4a443e;
    margin: 0;
}

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

.thanks-explore {
    padding: 4rem 2rem;
}

.thanks-explore h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-explore p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.thanks-explore a {
    color: #8b7968;
    font-weight: 600;
    text-decoration: underline;
}

.thanks-explore a:hover {
    color: #6b5d52;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1612;
}

.updated {
    font-size: 0.95rem;
    color: #6b5d52;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #2a2520;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #4a443e;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a443e;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a443e;
}

.legal-content a {
    color: #8b7968;
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6b5d52;
}

.legal-content strong {
    font-weight: 600;
    color: #2a2520;
}

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

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

.cookie-table th {
    background-color: #f8f6f3;
    font-weight: 600;
    color: #2a2520;
}

.cookie-table td {
    color: #4a443e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.75rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-links li {
        padding: 1rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .page-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .services-grid,
    .testimonials-row,
    .values-grid,
    .stats-grid,
    .services-compact {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .compact-service,
    .value-item,
    .stat {
        max-width: 100%;
    }

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

    .consultation-form {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

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

    .sticky-cta-btn {
        display: block;
        text-align: center;
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-section h1 {
        font-size: 2.25rem;
    }

    .next-steps {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

    .legal-container h1 {
        font-size: 2.25rem;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

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

    .cta-primary,
    .btn-primary,
    .cta-secondary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .service-card,
    .testimonial,
    .compact-service {
        padding: 1.75rem;
    }
}
