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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    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;
}

/* Navigation */
.main-nav {
    background: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e8c4a0;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

/* Hero Section - STACKED LAYOUT */
.hero-section {
    background: #f8f4f0;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background: #8b6f47;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.cta-primary:hover {
    background: #6d5535;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: #e8c4a0;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #d4b38e;
    transform: translateY(-2px);
}

/* Intro Block - Narrow Section */
.intro-block {
    background: #ffffff;
    padding: 5rem 2rem;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.intro-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

/* Experience Section - Split Layout */
.experience-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 6rem 2rem;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #e8c4a0;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.benefit-list {
    margin: 2rem 0;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e8c4a0;
    font-weight: bold;
    font-size: 1.2rem;
}

.link-inline {
    color: #e8c4a0;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.link-inline:hover {
    border-bottom-color: #e8c4a0;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Services Preview - Grid Cards */
.services-preview {
    background: #f5f5f5;
    padding: 6rem 2rem;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #5a5a5a;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #8b6f47;
    margin: 1rem 1.5rem;
}

.btn-card {
    display: inline-block;
    background: #8b6f47;
    color: #ffffff;
    padding: 0.9rem 2rem;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-card:hover {
    background: #6d5535;
}

/* Testimonial Section */
.testimonial-section {
    background: #8b6f47;
    color: #ffffff;
    padding: 4rem 2rem;
}

.testimonial-section blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-section cite {
    display: block;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    color: #e8c4a0;
    margin-top: 1rem;
}

/* Philosophy Section */
.philosophy-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.philosophy-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: #f8f4f0;
    border-radius: 8px;
}

.philosophy-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8b6f47;
}

.philosophy-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

/* Visual Break */
.visual-break {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Story Section */
.story-section {
    background: #f5f5f5;
    padding: 5rem 2rem;
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* CTA Block with Form */
.cta-block {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 6rem 2rem;
}

.cta-block h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #e8c4a0;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.form-row textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #8b6f47;
    color: #ffffff;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    background: #e8c4a0;
    padding: 4rem 2rem;
    text-align: center;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    background: #8b6f47;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #6d5535;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #8b6f47;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta:hover {
    background: #6d5535;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8f4f0 0%, #e8c4a0 100%);
    padding: 4rem 2rem;
    text-align: center;
}

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

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page - Story Full */
.story-full {
    background: #ffffff;
    padding: 5rem 2rem;
}

.story-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    background: #f5f5f5;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

/* Team Section */
.team-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e8c4a0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    background: #34495e;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid #e8c4a0;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e8c4a0;
}

.role {
    font-size: 1rem;
    color: #95a5a6;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ecf0f1;
}

/* Workshop Info */
.workshop-info {
    background: #ffffff;
    padding: 5rem 2rem;
}

/* CTA Simple */
.cta-simple {
    background: #f8f4f0;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-simple p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

/* Services Detail */
.services-detail {
    background: #ffffff;
    padding: 3rem 2rem;
}

.service-full {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-full:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    font-size: 1.05rem;
    line-height: 2;
    color: #5a5a5a;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 1.5rem;
}

/* Info Block */
.info-block {
    background: #f5f5f5;
    padding: 4rem 2rem;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.included-list li {
    background: #ffffff;
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    font-size: 1.05rem;
    color: #4a4a4a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    padding-left: 3rem;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 1.2rem;
    color: #8b6f47;
    font-weight: bold;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 4rem 2rem;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f4f0;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

/* Contact Info */
.contact-info {
    background: #ffffff;
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #8b6f47;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail strong {
    display: block;
    color: #1a1a1a;
}

.contact-detail a {
    color: #8b6f47;
    text-decoration: underline;
}

.contact-detail a:hover {
    color: #6d5535;
}

.contact-note {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background: #f5f5f5;
    padding: 4rem 2rem;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.direction-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.direction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8b6f47;
}

.direction-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

/* Visit Info */
.visit-info {
    background: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
}

.visit-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #e8c4a0;
}

.visit-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

/* Thanks Page */
.thanks-section {
    background: linear-gradient(135deg, #f8f4f0 0%, #e8c4a0 100%);
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.thanks-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.steps-list {
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #8b6f47;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

.thanks-note {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.thanks-note p {
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-note a {
    color: #8b6f47;
    text-decoration: underline;
}

.thanks-note a:hover {
    color: #6d5535;
}

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

.legal-intro {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

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

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
}

.legal-page li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: #8b6f47;
}

.legal-page a {
    color: #8b6f47;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6d5535;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    font-style: italic;
    color: #7a7a7a;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 5rem 2rem;
    }

    .hero-content {
        text-align: left;
    }

    .split-container {
        flex-direction: row;
        align-items: center;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .story-block {
        flex-direction: row;
        align-items: center;
    }

    .story-block img {
        flex: 1;
    }

    .story-text {
        flex: 1;
    }

    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .directions {
        flex-direction: row;
    }

    .direction-item {
        flex: 1;
    }

    .service-full {
        flex-direction: row;
        align-items: center;
    }

    .service-full.reverse {
        flex-direction: row-reverse;
    }

    .service-image {
        flex: 1;
    }

    .service-content {
        flex: 1;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }

    .philosophy-grid {
        flex-wrap: nowrap;
    }

    .philosophy-item {
        flex: 1 1 calc(25% - 1.875rem);
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 1.67rem);
    }

    .values-list {
        flex-wrap: nowrap;
    }

    .value-item {
        flex: 1 1 calc(33.333% - 1.67rem);
    }

    .contact-grid {
        flex-wrap: nowrap;
    }

    .contact-block {
        flex: 1 1 calc(33.333% - 2rem);
    }
}
