* {
    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: #333;
    background: #ffffff;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c5f2d;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 3px;
}

.hero-split {
    background: #f9faf9;
}

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    padding: 80px 0 80px 40px;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.hero-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1e4620;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c5f2d;
    padding: 15px 35px;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #ffffff;
}

.why-section,
.services-preview,
.trust-section,
.about-content,
.values-section,
.experience-section,
.approach-section,
.services-detailed,
.contact-content,
.location-section,
.faq-section {
    padding: 80px 0;
}

.content-block {
    padding: 40px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

.content-block p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.services-preview h2,
.trust-section h2,
.values-section h2,
.experience-section h2,
.approach-section h2,
.location-section h2,
.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.section-subtitle,
.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.service-info p {
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1e4620;
}

.booking-section {
    padding: 80px 0;
    background: #f9faf9;
}

.booking-section.hidden {
    display: none;
}

.form-info {
    padding: 40px;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.form-info p {
    color: #555;
    margin-bottom: 30px;
}

.selected-service-display {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #2c5f2d;
}

.selected-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.selected-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.selected-price {
    font-size: 20px;
    font-weight: 600;
    color: #2c5f2d;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1;
    background: #f9faf9;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

.cta-section {
    background: #2c5f2d;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #e8f3e8;
    margin-bottom: 35px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

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

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

.footer-column p {
    margin-bottom: 10px;
}

.footer-disclaimer {
    background: #252525;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background: #2c5f2d;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1e4620;
}

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

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

.page-hero {
    background: #f9faf9;
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    background: #f9faf9;
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.value-item p {
    color: #555;
}

.stats-box {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.approach-steps {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    background: #f9faf9;
    padding: 35px 25px;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.step p {
    color: #555;
    font-size: 15px;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f9faf9;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
    padding: 50px;
}

.service-text h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-text p {
    color: #555;
    margin-bottom: 18px;
}

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    font-size: 18px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
}

.price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 6px;
    margin: 25px 0;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.btn-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.service-image-box {
    flex: 1;
    height: 100%;
    background-color: #e8f3e8;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-box {
    flex: 1;
    background: #f9faf9;
    padding: 50px;
    border-radius: 8px;
}

.contact-info-box h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-note {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #2c5f2d;
    margin-top: 30px;
}

.contact-note p {
    color: #555;
    margin: 0;
}

.contact-visual {
    flex: 1;
    background-color: #e8f3e8;
}

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

.location-details {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.location-column {
    flex: 1;
}

.location-column h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

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

.location-column ul li {
    padding: 10px 0;
    color: #555;
}

.location-column p {
    color: #555;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background: #f9faf9;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.thanks-content {
    padding: 100px 0;
    text-align: center;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    background: #f9faf9;
    padding: 60px;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2c5f2d;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 38px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info {
    text-align: left;
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.thanks-info h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

.thanks-info ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

.thanks-note {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-note p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c5f2d;
    padding: 14px 30px;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.last-update {
    font-size: 14px;
    color: #666;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-section a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1e4620;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookies-table th {
    background: #f9faf9;
    color: #2c5f2d;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .split-left {
        padding: 40px 20px;
    }

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

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

    .testimonials-container {
        flex-direction: column;
    }

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

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

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .stats-box,
    .approach-steps {
        flex-direction: column;
    }

    .service-detail-content,
    .service-detail-card.reverse .service-detail-content {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .location-details {
        flex-direction: column;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

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