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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.3s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d5f3f;
    color: #fff;
}

.btn-accept:hover {
    background-color: #1f4329;
}

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

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #2d5f3f;
}

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

.main-nav a:hover::after {
    width: 100%;
}

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f8f8;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2d5f3f;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
    max-width: 500px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.philosophy-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
    font-weight: 700;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #555;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #2d5f3f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5f3f;
}

.value-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    max-width: 420px;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5f3f;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
}

.reservation-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

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

.reservation-intro {
    text-align: center;
    margin-bottom: 50px;
}

.reservation-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.reservation-intro p {
    font-size: 18px;
    color: #666;
}

.reservation-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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: #2d5f3f;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f4329;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.atmosphere-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.atmosphere-content {
    flex: 1;
}

.atmosphere-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
    font-weight: 700;
}

.atmosphere-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.link-secondary {
    display: inline-block;
    margin-top: 15px;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #2d5f3f;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-secondary:hover {
    color: #1f4329;
    border-bottom-color: #1f4329;
}

.atmosphere-image {
    flex: 1;
    max-width: 500px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.atmosphere-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.footer {
    background-color: #2d2d2d;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-top: 20px;
}

.page-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1f4329 100%);
    color: #fff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.story-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d5f3f;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

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

.values-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5f3f;
    font-weight: 700;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.chef-section {
    padding: 80px 40px;
    background-color: #fff;
}

.chef-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.chef-content {
    flex: 1.2;
}

.chef-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d5f3f;
    font-weight: 700;
}

.chef-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.chef-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.chef-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1f4329 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.service-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.service-price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-composition h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.service-composition ul {
    margin-bottom: 20px;
}

.service-composition ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-composition ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-note {
    font-size: 15px;
    font-style: italic;
    color: #888;
}

.booking-cta {
    padding: 80px 40px;
    background-color: #f8f8f8;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.hours-list {
    font-size: 16px;
    color: #666;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

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

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 95, 63, 0.9);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.access-section {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

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

.access-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5f3f;
    font-weight: 700;
}

.access-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.access-option {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.access-option h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.access-option p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-notes {
    padding: 80px 40px;
    background-color: #fff;
}

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

.notes-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5f3f;
    font-weight: 700;
}

.notes-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.note-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.note-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.note-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.final-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1f4329 100%);
    text-align: center;
    color: #fff;
}

.final-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5f3f;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.thanks-message span {
    font-weight: 700;
    color: #2d5f3f;
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.thanks-note {
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d5f3f;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2d5f3f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d5f3f;
}

.step-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #fff;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2d5f3f;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #fff;
}

.thanks-info {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.thanks-info p {
    font-size: 15px;
    margin: 0;
}

.legal-page {
    padding: 60px 40px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2d5f3f;
    font-weight: 700;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 20px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2d5f3f;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .header-container {
        padding: 15px 20px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav a {
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .ad-label {
        margin-top: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-image {
        min-height: 300px;
    }

    .intro-split,
    .philosophy-container,
    .atmosphere-split,
    .story-block,
    .chef-container,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .intro-image,
    .atmosphere-image,
    .philosophy-image,
    .chef-image {
        max-width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .values-layout,
    .access-grid,
    .notes-content {
        flex-direction: column;
    }

    .value-item,
    .access-option,
    .note-item {
        flex: 1 1 100%;
    }

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

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .services-header h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .reservation-form {
        padding: 30px 20px;
    }

    .thanks-container {
        padding: 40px 25px;
    }
}