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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 60px 8% 60px 8%;
    align-items: center;
    gap: 60px;
    background-color: var(--bg-light);
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.intro-asymmetric {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

.intro-block-overlap {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

.intro-text-narrow {
    flex: 1;
    max-width: 480px;
    padding-top: 40px;
}

.intro-text-narrow h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text-narrow p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 1;
    transform: translateY(60px);
}

.intro-image-offset img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.services-preview-irregular {
    padding: 80px 8%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-offset-1,
.service-card-offset-2,
.service-card-offset-3 {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card-offset-1 {
    margin-left: 0;
}

.service-card-offset-2 {
    margin-left: 120px;
}

.service-card-offset-3 {
    margin-left: 60px;
}

.service-card-offset-1 img,
.service-card-offset-2 img,
.service-card-offset-3 img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.service-info h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
}

.philosophy-split {
    display: flex;
    gap: 70px;
    padding: 90px 8%;
    background-color: var(--bg-white);
    align-items: center;
}

.philosophy-content {
    flex: 1;
    max-width: 500px;
}

.philosophy-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.philosophy-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.link-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: opacity 0.3s ease;
}

.link-inline:hover {
    opacity: 0.7;
}

.philosophy-visual {
    flex: 1;
}

.philosophy-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.reservation-form-section {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 720px;
    margin-left: 80px;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

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

.features-staggered {
    padding: 90px 8%;
    background-color: var(--bg-white);
    display: flex;
    gap: 50px;
    align-items: center;
}

.feature-block-1,
.feature-block-3 {
    flex: 1;
    padding: 30px;
}

.feature-block-1 h3,
.feature-block-3 h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-block-1 p,
.feature-block-3 p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.feature-block-2 {
    flex: 1;
}

.feature-block-2 img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 8% 30px 8%;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column-1,
.footer-column-2,
.footer-column-3 {
    flex: 1;
    min-width: 200px;
}

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

.footer-asymmetric p {
    font-size: 15px;
    color: var(--bg-light);
    line-height: 1.6;
}

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

.footer-asymmetric ul li {
    margin-bottom: 10px;
}

.footer-asymmetric ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    width: 100%;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--bg-light);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 30px 8%;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cookie-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.btn-reject:hover {
    background-color: #d0cdc8;
    transform: translateY(-2px);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

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

.about-hero-offset {
    padding: 80px 8%;
    background-color: var(--bg-light);
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-intro {
    flex: 1;
    max-width: 450px;
    padding-top: 60px;
}

.about-intro h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-image-main {
    flex: 1.2;
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.story-section-asymmetric {
    padding: 90px 8%;
    background-color: var(--bg-white);
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.story-block {
    flex: 1;
    max-width: 500px;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-block p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-highlight {
    flex: 1;
    position: relative;
}

.story-highlight img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.highlight-text {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 4px;
    margin-top: -50px;
    margin-left: 30px;
    margin-right: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight-text p {
    font-size: 15px;
    color: var(--text-light);
}

.values-irregular {
    padding: 80px 8%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item-1,
.value-item-2,
.value-item-3 {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.value-item-1 {
    max-width: 700px;
    margin-left: 0;
}

.value-item-2 {
    max-width: 700px;
    margin-left: auto;
}

.value-item-3 {
    max-width: 700px;
    margin-left: 100px;
}

.value-item-1 h3,
.value-item-2 h3,
.value-item-3 h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-item-1 p,
.value-item-2 p,
.value-item-3 p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-showcase {
    padding: 90px 8%;
    background-color: var(--bg-white);
}

.team-showcase h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.team-layout-offset {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.team-member {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 6px;
    max-width: 650px;
}

.team-member:nth-child(1) {
    margin-left: 0;
}

.team-member:nth-child(2) {
    margin-left: auto;
}

.team-member:nth-child(3) {
    margin-left: 120px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.awards-section {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.awards-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.awards-grid-asymmetric {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.award-block {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px 35px;
    border-radius: 6px;
    text-align: center;
    min-width: 250px;
}

.award-block p {
    font-size: 17px;
    font-weight: 600;
}

.cta-about {
    padding: 70px 8%;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-hero {
    padding: 80px 8%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.menu-section-offset {
    padding: 60px 8%;
    background-color: var(--bg-white);
}

.menu-item-large,
.menu-item-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.menu-item-reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.menu-image {
    flex: 1;
}

.menu-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.menu-details {
    flex: 1;
}

.menu-details h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.menu-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.menu-includes {
    list-style: none;
    margin-bottom: 25px;
}

.menu-includes li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.menu-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

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

.btn-menu {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-menu:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.beverages-section {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.beverages-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.beverages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.beverage-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    max-width: 320px;
}

.beverage-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-hero {
    padding: 70px 8%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

.contact-layout-asymmetric {
    padding: 80px 8%;
    background-color: var(--bg-white);
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.info-group {
    margin-bottom: 35px;
}

.info-group h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.email-display {
    color: var(--text-light);
    font-weight: 500;
}

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

.contact-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
    background-color: var(--bg-light);
}

.contact-note {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 6px;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.contact-note h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-contact {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-contact:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.additional-info-section {
    padding: 80px 8%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card-offset-1,
.info-card-offset-2,
.info-card-offset-3 {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.info-card-offset-1 {
    max-width: 650px;
    margin-left: 0;
}

.info-card-offset-2 {
    max-width: 650px;
    margin-left: auto;
}

.info-card-offset-3 {
    max-width: 650px;
    margin-left: 100px;
}

.info-card-offset-1 h3,
.info-card-offset-2 h3,
.info-card-offset-3 h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card-offset-1 p,
.info-card-offset-2 p,
.info-card-offset-3 p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 8%;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 750px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 6px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.7;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 35px;
}

.thanks-next-steps {
    margin-bottom: 35px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 35px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.thanks-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #6d5636;
    transform: translateY(-2px);
}

.legal-content {
    padding: 80px 8%;
    background-color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-block-overlap,
    .philosophy-split,
    .story-section-asymmetric,
    .contact-layout-asymmetric,
    .menu-item-large,
    .menu-item-reverse,
    .features-staggered,
    .about-hero-offset {
        flex-direction: column;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3 {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .value-item-1,
    .value-item-2,
    .value-item-3,
    .info-card-offset-1,
    .info-card-offset-2,
    .info-card-offset-3,
    .team-member {
        margin-left: 0 !important;
        max-width: 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content-left h1 {
        font-size: 42px;
    }

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