* {
    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;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-magazine {
    background-color: #fff;
    border-bottom: 2px solid #2c5f2d;
    padding: 20px 0;
}

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

.logo-section h1 {
    font-size: 32px;
    color: #2c5f2d;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-section .tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.nav-horizontal {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-horizontal a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-horizontal a:hover {
    color: #2c5f2d;
}

.hero-magazine {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #2c5f2d;
}

.hero-image-container 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) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    padding: 50px 40px;
    color: #fff;
}

.hero-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 18px;
    max-width: 600px;
    opacity: 0.9;
}

.intro-columns {
    padding: 60px 0;
    background-color: #fafafa;
}

.intro-columns .container-fluid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.col-left {
    flex: 1;
}

.col-left h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.col-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.col-right {
    flex: 1;
}

.image-frame {
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.highlight-block {
    padding: 80px 0;
    background-color: #2c5f2d;
    color: #fff;
}

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

.text-center-block h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-center-block p {
    font-size: 18px;
    line-height: 1.8;
}

.three-col-grid {
    padding: 80px 0;
}

.three-col-grid .container {
    display: flex;
    gap: 40px;
}

.grid-item {
    flex: 1;
}

.grid-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e8e8e8;
}

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

.grid-item h4 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.grid-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.menu-preview-magazine {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h3 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.menu-header p {
    font-size: 17px;
    color: #666;
}

.menu-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.menu-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-card {
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #2c5f2d;
}

.menu-card h5 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.menu-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234d23;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c5f2d;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c5f2d;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #fff;
}

.reservation-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.reservation-form {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

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

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

.testimonials-magazine {
    padding: 80px 0;
    background-color: #fafafa;
}

.testimonials-magazine h3 {
    text-align: center;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 50px;
}

.testimonial-layout {
    display: flex;
    gap: 40px;
}

.testimonial-item {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-top: 3px solid #2c5f2d;
}

.testimonial-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-item .author {
    font-size: 14px;
    color: #2c5f2d;
    font-weight: 600;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c5f2d;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

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

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

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

.btn-accept:hover {
    background-color: #234d23;
}

.btn-reject {
    background-color: #f0f0f0;
    color: #333;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

.page-hero {
    background-color: #2c5f2d;
    color: #fff;
    padding: 60px 0;
    margin-bottom: 60px;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero .lead {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    padding: 60px 0;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.about-text-main h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 25px;
}

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

.about-image-side {
    flex: 1;
    background-color: #e8e8e8;
}

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

.values-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.values-section h3 {
    text-align: center;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-section h3 {
    text-align: center;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.team-layout {
    display: flex;
    gap: 50px;
}

.team-member {
    flex: 1;
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e8e8e8;
}

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

.team-member h4 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.philosophy-block {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.philosophy-content h3 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 25px;
    text-align: center;
}

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

.cta-about {
    padding: 80px 0;
    text-align: center;
}

.cta-about h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.menu-intro {
    padding: 40px 0;
}

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

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

.services-detailed {
    padding: 60px 0;
}

.service-item-full {
    margin-bottom: 60px;
}

.service-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

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

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

.menu-details li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.menu-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.additional-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.additional-info h3 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.additional-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cta-services {
    padding: 80px 0;
    text-align: center;
    background-color: #2c5f2d;
    color: #fff;
}

.cta-services h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-services p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-services .btn-primary {
    background-color: #fff;
    color: #2c5f2d;
}

.cta-services .btn-primary:hover {
    background-color: #f0f0f0;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-main h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.contact-info-main p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item h4 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-image-side {
    flex: 1;
    background-color: #e8e8e8;
}

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

.directions-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.directions-section h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 30px;
}

.directions-content {
    display: flex;
    gap: 50px;
}

.direction-item {
    flex: 1;
}

.direction-item h4 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

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

.visit-note {
    padding: 80px 0;
}

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

.note-content h3 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.note-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

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

.thanks-details {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.thanks-note {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.next-steps {
    padding: 80px 0;
    background-color: #fafafa;
}

.next-steps h3 {
    text-align: center;
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5f2d;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 38px;
    color: #2c5f2d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    color: #2c5f2d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 12px;
}

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

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

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

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234d23;
}

.last-updated {
    margin-top: 40px;
    font-style: italic;
    color: #888;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-horizontal {
        width: 100%;
        flex-wrap: wrap;
    }

    .intro-columns .container-fluid,
    .about-layout,
    .contact-layout,
    .service-content-wrapper {
        flex-direction: column;
    }

    .menu-layout,
    .testimonial-layout,
    .footer-content,
    .values-grid,
    .team-layout,
    .directions-content,
    .steps-grid {
        flex-direction: column;
    }

    .three-col-grid .container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding: 0 20px;
    }

    .hero-overlay h2 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .col-left h3,
    .about-text-main h3,
    .contact-info-main h3 {
        font-size: 26px;
    }

    .text-center-block h3,
    .menu-header h3 {
        font-size: 28px;
    }

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

    .nav-horizontal {
        gap: 15px;
        font-size: 14px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}