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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.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;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #a8d5ba;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #5d9670;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    padding: 20px 0;
}

.ad-disclosure {
    text-align: center;
    font-size: 11px;
    color: #ffffff;
    background-color: rgba(0,0,0,0.5);
    padding: 6px 0;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #2a3d2f;
}

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-overlay-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-overlay-text p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 36px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.cta-hero {
    display: inline-block;
    padding: 16px 44px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-hero:hover {
    background-color: #5d9670;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.intro-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-story h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.intro-story img {
    margin: 50px 0;
    border-radius: 6px;
    width: 100%;
    height: auto;
}

.why-different {
    padding: 100px 20px;
    background-color: #f5f5f3;
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.split-image {
    flex: 1;
    background-color: #d4d4d0;
}

.split-image img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.experiences-grid {
    padding: 100px 20px;
    background-color: #ffffff;
}

.experiences-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cards-experiences {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.card-exp {
    flex: 0 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #fafaf8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background-color: #e8e8e6;
}

.card-exp:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.card-exp img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-exp h3 {
    font-size: 22px;
    margin: 24px 20px 12px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.3;
}

.card-exp p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 20px;
    color: #4a4a4a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin: 0 20px 16px;
}

.btn-select {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 24px;
    padding: 14px 0;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #5d9670;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: #2a3d2f;
}

.testimonials-inline blockquote {
    margin-bottom: 48px;
    padding: 32px;
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #a8d5ba;
    border-radius: 4px;
}

.testimonials-inline blockquote:last-child {
    margin-bottom: 0;
}

.testimonials-inline p {
    font-size: 19px;
    line-height: 1.7;
    color: #e8e8e6;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonials-inline cite {
    font-size: 15px;
    color: #a8d5ba;
    font-style: normal;
    font-weight: 600;
}

.form-section {
    padding: 100px 20px;
    background-color: #f5f5f3;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 48px;
    font-size: 17px;
    color: #4a4a4a;
}

#bookingForm {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d4d4d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c59;
}

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

.btn-submit:hover {
    background-color: #5d9670;
}

.final-cta {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f5f3;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #6a6a6a;
    text-align: center;
    font-style: italic;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a3a3a;
    font-size: 13px;
    color: #7a7a7a;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

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

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

    .card-exp {
        flex: 0 1 100%;
    }

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

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

.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #2a3d2f 0%, #4a7c59 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2a2a2a;
    font-weight: 500;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-section ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.contact-info {
    background-color: #f5f5f3;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 0;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.thanks-message {
    text-align: center;
    padding: 120px 20px;
    background-color: #ffffff;
}

.thanks-message h1 {
    font-size: 48px;
    color: #4a7c59;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.thanks-message .btn-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thanks-message .btn-home:hover {
    background-color: #5d9670;
}
