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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1e3a2f;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e8f1ed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: #fef3cd;
    color: #856404;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8faf9;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #1e3a2f;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #d4e5dc;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #c8d5d0;
}

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

.btn-primary {
    display: inline-block;
    background-color: #7fc8a9;
    color: #1e3a2f;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #6bb594;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 200, 169, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1e3a2f;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #1e3a2f;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1e3a2f;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 60vh;
}

.intro-image {
    flex: 1;
    background-color: #e8f1ed;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-section {
    padding: 5rem 3rem;
    background-color: #f8faf9;
}

.services-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #1e3a2f;
    font-weight: 700;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #7fc8a9;
    margin: 1.5rem 0;
}

.btn-select {
    background-color: #1e3a2f;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #2d5246;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 47, 0.3);
}

.booking-split {
    display: flex;
    min-height: 70vh;
    background-color: #e8f1ed;
}

.booking-content {
    flex: 1;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1e3a2f;
    color: #ffffff;
}

.booking-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4e5dc;
}

.booking-form-container {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.booking-form {
    width: 100%;
    max-width: 550px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3a2f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d4e5dc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fc8a9;
}

.form-group input[readonly] {
    background-color: #f8faf9;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #1e3a2f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #2d5246;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 47, 0.3);
}

.testimonials-split {
    display: flex;
    min-height: 60vh;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 4rem;
    background-color: #7fc8a9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #1e3a2f;
    font-weight: 700;
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e3a2f;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-weight: 600;
    font-style: italic;
    color: #0d1f18;
}

.testimonial-image {
    flex: 1;
    background-color: #e8f1ed;
}

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

.main-footer {
    background-color: #0d1f18;
    color: #d4e5dc;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.footer-section h3 {
    color: #7fc8a9;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #d4e5dc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7fc8a9;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    background-color: rgba(127, 200, 169, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0c4bb;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 229, 220, 0.2);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a2f;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: #7fc8a9;
    color: #1e3a2f;
}

.btn-accept:hover {
    background-color: #6bb594;
}

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

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

.about-hero-split {
    display: flex;
    min-height: 70vh;
}

.about-hero-content {
    flex: 1;
    padding: 4rem 4rem;
    background-color: #7fc8a9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
    font-weight: 800;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #0d1f18;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
    background-color: #e8f1ed;
}

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

.story-split {
    display: flex;
    min-height: 60vh;
    background-color: #ffffff;
}

.story-image {
    flex: 1;
    background-color: #e8f1ed;
}

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

.story-content {
    flex: 1;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
    font-weight: 700;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.values-split {
    display: flex;
    min-height: 60vh;
    background-color: #f8faf9;
}

.values-content {
    flex: 1;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1e3a2f;
    color: #ffffff;
}

.values-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #d4e5dc;
}

.values-image {
    flex: 1;
    background-color: #e8f1ed;
}

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

.expertise-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1e3a2f;
    font-weight: 700;
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8faf9;
    border-radius: 8px;
    border-left: 4px solid #7fc8a9;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1e3a2f;
    font-weight: 700;
}

.expertise-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.commitment-split {
    display: flex;
    min-height: 60vh;
}

.commitment-image {
    flex: 1;
    background-color: #e8f1ed;
}

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

.commitment-content {
    flex: 1;
    padding: 4rem 4rem;
    background-color: #7fc8a9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
    font-weight: 700;
}

.commitment-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #0d1f18;
}

.services-hero {
    padding: 5rem 3rem;
    text-align: center;
    background-color: #1e3a2f;
    color: #ffffff;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.2rem;
    color: #d4e5dc;
}

.service-detail-split {
    display: flex;
    min-height: 65vh;
    background-color: #ffffff;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7fc8a9;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7fc8a9;
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-section {
    padding: 5rem 3rem;
    text-align: center;
    background-color: #7fc8a9;
}

.cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #0d1f18;
}

.contact-hero {
    padding: 5rem 3rem;
    text-align: center;
    background-color: #7fc8a9;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #0d1f18;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info {
    flex: 1;
    padding: 4rem 4rem;
    background-color: #1e3a2f;
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #7fc8a9;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d4e5dc;
}

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

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

.contact-cta {
    padding: 5rem 3rem;
    text-align: center;
    background-color: #f8faf9;
}

.contact-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.thanks-section {
    min-height: 70vh;
    padding: 5rem 3rem;
    background-color: #f8faf9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1e3a2f;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1e3a2f;
    font-weight: 700;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}

.thanks-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7fc8a9;
    font-weight: 700;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 3rem;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a2f;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e3a2f;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #7fc8a9;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .testimonials-split,
    .about-hero-split,
    .story-split,
    .values-split,
    .commitment-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .booking-content,
    .booking-form-container,
    .about-hero-content,
    .story-content,
    .values-content,
    .commitment-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-content h1,
    .about-hero-content h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .expertise-item {
        flex: 1 1 100%;
    }
}