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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2419;
    background-color: #fafaf8;
}

.ad-notice {
    background-color: #2d2419;
    color: #f8f6f3;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 35px;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2419;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2d2419;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
}

.hero-card {
    position: relative;
    max-width: 1400px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 36, 25, 0.95) 0%, rgba(45, 36, 25, 0.7) 70%, transparent 100%);
    color: #f8f6f3;
    padding: 60px 50px 40px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.7;
}

.card-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.intro-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 60px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d2419;
    font-weight: 700;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4035;
}

.services-preview {
    margin-bottom: 50px;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 45px;
    color: #2d2419;
    font-weight: 700;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-text {
    padding: 30px;
}

.card-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d2419;
    font-weight: 600;
}

.card-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5045;
    margin-bottom: 12px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b7355;
    margin-top: 20px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d2419;
    color: #f8f6f3;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.experience-card {
    margin-bottom: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.split-content {
    display: flex;
    flex-wrap: wrap;
}

.content-left {
    flex: 1 1 50%;
    padding: 60px 50px;
    min-width: 320px;
}

.content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2d2419;
    font-weight: 700;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4035;
}

.content-right {
    flex: 1 1 50%;
    min-width: 320px;
    overflow: hidden;
}

.content-right img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.values-cards {
    margin-bottom: 50px;
}

.values-cards h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2419;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 17px);
    min-width: 280px;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.booking-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 60px;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.booking-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d2419;
    font-weight: 700;
}

.booking-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a4035;
}

.booking-form {
    max-width: 700px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e3dc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.btn-submit {
    background-color: #2d2419;
    color: #f8f6f3;
    padding: 16px 50px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.main-footer {
    background-color: #2d2419;
    color: #f8f6f3;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #c9b896;
}

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

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

.footer-section ul li a {
    color: #c9b896;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(139, 115, 85, 0.15);
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #c9b896;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 184, 150, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: #c9b896;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2419;
    color: #f8f6f3;
    padding: 25px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 60%;
    font-size: 0.95rem;
    line-height: 1.6;
    min-width: 280px;
}

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

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

.btn-cookie-accept {
    background-color: #8b7355;
    color: #f8f6f3;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #f8f6f3;
    border: 2px solid #8b7355;
}

.btn-cookie-reject:hover {
    background-color: rgba(139, 115, 85, 0.1);
    transform: translateY(-2px);
}

.page-header-card {
    background-color: #2d2419;
    color: #f8f6f3;
    padding: 60px 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.page-header-card h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header-card p {
    font-size: 1.2rem;
    color: #c9b896;
}

.story-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-image-large {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.card-image-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content {
    padding: 50px 60px;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2d2419;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4035;
}

.philosophy-cards {
    margin-bottom: 50px;
}

.philosophy-cards h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2419;
    font-weight: 700;
}

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

.philosophy-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2d2419;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5045;
}

.team-section {
    margin-bottom: 50px;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2419;
    font-weight: 700;
}

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

.team-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2d2419;
    font-weight: 600;
}

.role {
    font-size: 0.95rem;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5045;
}

.values-statement {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 60px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.statement-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2d2419;
    font-weight: 700;
}

.statement-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4035;
}

.cta-card {
    background-color: #8b7355;
    color: #f8f6f3;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-card p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-card .btn-primary {
    background-color: #2d2419;
}

.cta-card .btn-primary:hover {
    background-color: #1a1510;
}

.services-catalog {
    margin-bottom: 50px;
}

.service-card-detailed {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
}

.service-visual {
    flex: 1 1 45%;
    min-width: 320px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.service-details {
    flex: 1 1 55%;
    min-width: 320px;
    padding: 45px 50px;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d2419;
    font-weight: 700;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4035;
}

.service-details h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d2419;
    font-weight: 600;
}

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

.service-details ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a5045;
}

.service-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.service-duration {
    font-size: 0.95rem;
    color: #8b7355;
    font-weight: 600;
    margin-top: 20px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2419;
    margin-top: 25px;
    margin-bottom: 25px;
}

.btn-select-service {
    background-color: #8b7355;
    color: #f8f6f3;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #a38a6d;
    transform: translateY(-2px);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2d2419;
    font-weight: 600;
}

.contact-info-large {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.8;
    color: #2d2419;
    margin-bottom: 20px;
}

.contact-note {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a5045;
}

.hours-list {
    margin-bottom: 20px;
}

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

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

.day {
    font-weight: 600;
    color: #2d2419;
}

.time {
    color: #5a5045;
}

.map-section {
    margin-bottom: 50px;
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 35px;
    color: #2d2419;
    font-weight: 700;
}

.map-card {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d2419;
}

.access-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.access-card {
    flex: 1 1 calc(33.333% - 17px);
    min-width: 280px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.access-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d2419;
    font-weight: 600;
}

.access-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5045;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2419;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.faq-card {
    flex: 1 1 calc(50% - 13px);
    min-width: 320px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d2419;
    font-weight: 600;
}

.faq-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5045;
}

.thanks-page {
    padding-top: 40px;
}

.thanks-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 60px 50px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #f8f6f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    font-weight: 700;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d2419;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4035;
    margin-bottom: 30px;
}

.confirmation-details {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5045;
}

.next-steps-card {
    max-width: 800px;
    margin: 0 auto 35px;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.next-steps-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2d2419;
    font-weight: 700;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a4035;
}

.contact-reminder {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-reminder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d2419;
    font-weight: 600;
}

.contact-reminder p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4035;
}

.contact-hours {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #5a5045;
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d2419;
    border: 2px solid #2d2419;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

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

.what-to-expect {
    margin-bottom: 50px;
}

.what-to-expect h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2419;
    font-weight: 700;
}

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

.expect-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.expect-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.expect-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d2419;
    font-weight: 600;
}

.expect-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5045;
}

.discover-more {
    margin-bottom: 50px;
}

.discover-more h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2419;
    font-weight: 700;
}

.discover-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.discover-card {
    flex: 1 1 calc(33.333% - 17px);
    min-width: 300px;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.discover-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.discover-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-text-light {
    color: #f8f6f3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.btn-text-light:hover {
    opacity: 0.8;
}

.btn-text-dark {
    color: #2d2419;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.btn-text-dark:hover {
    opacity: 0.7;
}

.legal-page {
    padding-top: 40px;
}

.legal-content {
    margin-bottom: 50px;
}

.legal-card {
    padding: 40px 50px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.legal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2d2419;
    font-weight: 700;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d2419;
    font-weight: 600;
}

.legal-card h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2d2419;
    font-weight: 600;
}

.legal-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a4035;
}

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

.legal-card ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4035;
}

.legal-card strong {
    color: #2d2419;
    font-weight: 600;
}

.legal-card a {
    color: #8b7355;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-card a:hover {
    color: #a38a6d;
}

.cookie-table h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2d2419;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .intro-card,
    .booking-card,
    .story-content,
    .values-statement,
    .legal-card {
        padding: 35px 30px;
    }

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

    .value-card,
    .philosophy-card,
    .team-card,
    .contact-card,
    .access-card,
    .faq-card,
    .expect-card,
    .discover-card {
        flex: 1 1 100%;
    }

    .content-left,
    .content-right,
    .service-visual,
    .service-details {
        flex: 1 1 100%;
    }

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

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

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