/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

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

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

a:hover {
    opacity: 0.7;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.02em;
}

.ad-notice {
    font-size: 0.75rem;
    color: #6c757d;
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

/* Hero - Offset Asymmetric Style */
.hero-offset {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-visual {
    position: relative;
    width: 85%;
    margin-left: auto;
    height: 60vh;
    background: #2d5a3d;
}

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

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

.hero-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-intro {
    width: 60%;
    padding: 3rem;
    background: white;
    margin-top: -5rem;
    margin-left: 5%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.intro-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    line-height: 1.3;
}

.intro-block p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2d5a3d;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #234a31;
    opacity: 1;
}

/* Services - Asymmetric Grid */
.services-asymmetric {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

.section-header-offset {
    max-width: 500px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card.large {
    flex: 1 1 calc(55% - 1rem);
    display: flex;
    flex-direction: column;
}

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

.service-card.offset-right {
    margin-left: auto;
}

.service-card.small {
    flex: 1 1 calc(30% - 1rem);
    background: #2d5a3d;
    color: white;
}

.service-card.large-horizontal {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-visual {
    background: #ddd;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: inherit;
    opacity: 0.9;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.service-card.small .service-price {
    color: white;
}

.btn-service {
    padding: 0.8rem 1.5rem;
    background: #2d5a3d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background: #234a31;
}

.service-card.small .btn-service {
    background: white;
    color: #2d5a3d;
}

/* Philosophy Section - Overlapping */
.philosophy-overlap {
    padding: 6rem 2rem;
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.content-narrow {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
}

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.content-narrow p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.visual-side {
    flex: 1;
    position: relative;
}

.visual-side img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Ingredients Section */
.ingredients-section {
    background: white;
    padding: 5rem 2rem;
}

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

.ingredients-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.ingredients-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.ingredient-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.ingredient-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.ingredient-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.ingredient-item a {
    color: #2d5a3d;
    text-decoration: underline;
}

/* Form Section - Diagonal */
.form-section-diagonal {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d29 100%);
    padding: 6rem 2rem;
    margin: 4rem 0;
    transform: skewY(-2deg);
}

.form-container {
    transform: skewY(2deg);
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 2rem;
    color: #666;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2d5a3d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #234a31;
}

/* Location Strip */
.location-strip {
    background: #234a31;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.location-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: white;
    color: #2d5a3d;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-brand {
    flex: 2;
    max-width: 400px;
}

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

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

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-references h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
    color: #ccc;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
}

.footer-references a {
    color: #6ba583;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #252525;
    border-left: 4px solid #2d5a3d;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: #2d5a3d;
    color: white;
}

.btn-reject {
    background: #555;
    color: white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    margin-top: 80px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f0f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #2d5a3d;
    font-weight: 600;
}

.thanks-details {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.thanks-details h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-details ul {
    list-style-position: inside;
    color: #555;
}

.thanks-details li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-contact {
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a3d;
    margin-top: 0.5rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2d5a3d;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #234a31;
    opacity: 1;
}

/* About Page */
.about-hero {
    margin-top: 80px;
    display: flex;
    min-height: 70vh;
}

.about-visual-left {
    flex: 1;
    background: #ddd;
}

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

.about-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-right h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.story-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    max-width: 800px;
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.story-block p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.values-offset {
    margin-left: 10%;
    max-width: 900px;
}

.values-offset h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-left: 4px solid #2d5a3d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

.team-section-stacked {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #666;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    font-size: 0.9rem;
    color: #2d5a3d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.philosophy-visual {
    padding: 6rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.philosophy-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1.5;
}

.philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d29 100%);
    color: white;
}

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

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Page */
.services-header {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #f5f5f5, white);
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    background: white;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.service-detail-card.featured {
    background: #f0f7f4;
}

.service-image-large {
    flex: 1;
    background: #ddd;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
}

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

.price-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
    background: #f0f7f4;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.price-tag.special {
    background: #2d5a3d;
    color: white;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.service-info h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.service-includes {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-includes li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.duration {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.savings {
    background: #fff3cd;
    color: #856404;
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-service.highlighted {
    background: #2d5a3d;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.products-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

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

.products-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #666;
}

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

.product-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.product-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.booking-cta-services {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d29 100%);
    color: white;
}

.booking-cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #f5f5f5, white);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-lead {
    font-size: 1.2rem;
    color: #666;
}

.contact-main {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.email-text {
    color: #2d5a3d;
    font-weight: 600;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table td {
    padding: 0.8rem 0;
    font-size: 1rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.hours-table td:last-child {
    text-align: right;
    color: #555;
}

.location-visual {
    flex: 1;
    background: #ddd;
}

.location-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.directions-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

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

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

.direction-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.direction-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.direction-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.direction-item ul {
    padding-left: 1.5rem;
}

.direction-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

.faq-contact {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-left: 4px solid #2d5a3d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.booking-cta-contact {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d29 100%);
    color: white;
}

.booking-cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-subtitle,
.legal-update {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2d5a3d;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-container li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #555;
}

.legal-container a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    font-weight: 600;
    color: #2d5a3d;
}

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

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

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

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

    .hero-intro {
        width: 80%;
    }

    .philosophy-overlap,
    .philosophy-visual {
        flex-direction: column;
    }

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

    .about-hero {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-intro {
        width: 90%;
        margin-left: 5%;
        padding: 2rem;
    }

    .intro-block h2 {
        font-size: 1.5rem;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small,
    .service-card.large-horizontal {
        flex: 1 1 100%;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .values-offset {
        margin-left: 0;
    }

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

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

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

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

    .services-header h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .thanks-container h1 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary,
    .cta-inline {
        width: 100%;
        text-align: center;
    }
}