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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #7c9d8e;
    --accent-color: #d4a574;
    --text-dark: #2a2a2a;
    --text-light: #666666;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #1f4329;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-overview {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 25px 15px;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 25px 25px;
}

.trust-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    margin-top: 35px;
}

.trust-content blockquote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-content cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.trust-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.booking-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.booking-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

.booking-form {
    background-color: var(--bg-light);
    padding: 45px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1f4329;
}

.values-split {
    display: flex;
    align-items: center;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-content {
    flex: 1;
    padding: 80px 60px;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 0;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    border-top: 1px solid #444444;
    padding: 30px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #666666;
    color: var(--bg-white);
}

.cookie-reject:hover {
    background-color: #555555;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

.about-content {
    flex: 1;
    padding-right: 60px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.mission-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.mission-content {
    flex: 1;
    padding: 80px 60px;
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.team-member {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.approach-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.approach-split {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--primary-color);
}

.approach-content h3:first-child {
    margin-top: 0;
}

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

.approach-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

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

.service-detail-split:nth-child(even) {
    background-color: var(--bg-light);
}

.service-detail-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 0 60px;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1f4329;
}

.pricing-note {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

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

.pricing-container h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.pricing-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-split {
    display: flex;
    padding: 80px 40px;
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

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

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.visit-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.visit-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.visit-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.visit-section a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-placeholder {
    padding: 0;
}

.map-container {
    background-color: var(--bg-light);
}

.map-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    min-height: 500px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-container p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.back-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #1f4329;
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.legal-container a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .values-split,
    .about-split,
    .mission-split,
    .service-detail-split,
    .contact-split,
    .approach-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .trust-content,
    .values-content,
    .about-content,
    .mission-content,
    .service-detail-content,
    .contact-info,
    .approach-content {
        padding: 40px 25px;
    }

    .hero-image,
    .intro-image,
    .trust-image,
    .values-image,
    .about-image,
    .mission-image,
    .service-detail-image,
    .contact-image {
        min-height: 300px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }
}