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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff;
}

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f4f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5f4f;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    padding-left: 1rem;
    border-left: 1px solid #e0e0e0;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8faf9;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #d4e3dd;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1f4437;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c5f4f;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2c5f4f;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #2c5f4f;
    color: #ffffff;
}

.intro-narrative {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-narrative h2 {
    font-size: 2.2rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.intro-narrative p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-showcase {
    padding: 4rem 2rem;
    background-color: #f8faf9;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #1a3a2f;
    margin-bottom: 3rem;
}

.service-split {
    display: flex;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
}

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

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

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

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

.service-details h3 {
    font-size: 1.8rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.6rem;
    color: #2c5f4f;
    font-weight: 600;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.form-wrapper {
    flex: 1;
    background-color: #f8faf9;
    padding: 2.5rem;
    border-radius: 8px;
}

.booking-form {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1f4437;
}

.trust-indicators {
    padding: 5rem 2rem;
    background-color: #1a3a2f;
    color: #ffffff;
}

.trust-indicators h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.9;
}

.site-footer {
    background-color: #f8faf9;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #555;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #2c5f4f;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #e8f0ed;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2f;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background-color: #ffffff;
    color: #1a3a2f;
}

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

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

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

.thanks-page {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-details {
    background-color: #e8f0ed;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #2c5f4f;
}

.thanks-next {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.page-header {
    background-color: #f8faf9;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-card-full {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-full.reverse {
    flex-direction: row-reverse;
}

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

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

.service-card-content {
    flex: 1;
    padding: 3rem;
}

.service-card-content h2 {
    font-size: 2rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    color: #2c5f4f;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: bold;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c5f4f;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #2c5f4f;
}

.cta-section .btn-primary:hover {
    background-color: #e8f0ed;
}

.about-hero {
    display: flex;
    min-height: 500px;
}

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

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.2rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.methodology-split {
    padding: 4rem 2rem;
    background-color: #f8faf9;
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-content {
    flex: 1;
}

.method-content h2 {
    font-size: 2rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.method-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.method-list {
    flex: 1;
}

.method-list h3 {
    font-size: 1.5rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

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

.principle-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.principle-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-size: 1.5rem;
}

.equipment-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.equipment-section h2 {
    font-size: 2.5rem;
    color: #1a3a2f;
    text-align: center;
    margin-bottom: 3rem;
}

.equipment-grid {
    display: flex;
    gap: 2rem;
}

.equipment-card {
    flex: 1;
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
}

.equipment-card h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.equipment-card p {
    font-size: 0.95rem;
    color: #555;
}

.experience-section {
    padding: 5rem 2rem;
    background-color: #f8faf9;
}

.experience-section h2 {
    font-size: 2.2rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.experience-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-content h2 {
    font-size: 2.2rem;
    color: #1a3a2f;
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.contact-page {
    padding: 3rem 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.contact-information {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.inquiry-list {
    list-style: none;
    margin-top: 0.8rem;
}

.inquiry-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.inquiry-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f4f;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f8faf9;
    border-radius: 8px;
    overflow: hidden;
}

.service-areas {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8faf9;
    border-radius: 8px;
}

.service-areas h2 {
    font-size: 1.8rem;
    color: #1a3a2f;
    margin-bottom: 1rem;
}

.service-areas p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 3rem 2rem;
    min-height: 500px;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a3a2f;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8faf9;
    color: #2c5f4f;
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .service-split,
    .form-container-split,
    .testimonial-grid,
    .footer-content,
    .service-card-full,
    .methodology-split,
    .equipment-grid,
    .contact-layout,
    .about-hero {
        flex-direction: column;
    }

    .service-split.reverse,
    .service-card-full.reverse {
        flex-direction: column;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}