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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 61, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

.btn-accept {
    background: white;
    color: #2d5a3d;
    font-weight: 600;
}

.btn-accept:hover {
    background: #e8f5e9;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 2.5rem;
}

.header-right a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header-right a:hover {
    color: #2d5a3d;
}

.header-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5a3d;
    transition: width 0.3s ease;
}

.header-right a:hover::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a29 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #2d5a3d;
}

.split-reverse {
    display: flex;
    margin: 4rem 0;
}

.split-normal {
    display: flex;
    margin: 4rem 0;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.section-header-center {
    text-align: center;
    padding: 4rem 5% 2rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.services-showcase {
    background: white;
    padding: 3rem 0 5rem;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-info p {
    color: #555;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.6rem;
    color: #2d5a3d;
    font-weight: 700;
    margin: 1.5rem 0;
}

.select-service {
    width: 100%;
    padding: 0.9rem;
    background: #2d5a3d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.split-dark {
    display: flex;
    background: #1a1a1a;
    margin: 5rem 0;
}

.split-text-white {
    flex: 1;
    padding: 4rem 5%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text-white h3,
.split-text-white h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.split-text-white p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a8d5ba;
    font-weight: bold;
    font-size: 1.3rem;
}

.split-image-dark {
    flex: 1;
    overflow: hidden;
}

.split-image-dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-split {
    display: flex;
    gap: 0;
    margin: 4rem 0;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

.testimonial-left {
    background: #f5f5f5;
}

.testimonial-right {
    background: #e8f5e9;
}

.testimonials-split blockquote {
    border-left: 4px solid #2d5a3d;
    padding-left: 2rem;
}

.testimonials-split p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonials-split cite {
    font-style: normal;
    color: #2d5a3d;
    font-weight: 600;
    font-size: 1rem;
}

.booking-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a29 100%);
    padding: 5rem 5%;
    margin: 5rem 0 0 0;
}

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

.booking-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2d5a3d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5%;
    background: #1a1a1a;
    color: white;
    gap: 3rem;
}

.footer-left h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #a8d5ba;
}

.footer-left p,
.footer-right p {
    opacity: 0.8;
}

.footer-center h4,
.footer-right h4 {
    margin-bottom: 1rem;
    color: #a8d5ba;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-center a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-center a:hover {
    opacity: 1;
}

.page-hero {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a29 100%);
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.values-section {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.cta-centered {
    text-align: center;
    padding: 5rem 5%;
    background: #f5f5f5;
}

.cta-centered h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
    padding: 3rem 5%;
    background: white;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #2d5a3d;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-bottom: 0.8rem;
}

.contact-block p {
    color: #555;
    line-height: 1.7;
}

.contact-block a {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 61, 0.9);
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-overlay p {
    font-size: 1.2rem;
    margin: 0;
}

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

.service-detail-split {
    display: flex;
    margin: 3rem 0;
    background: white;
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-right {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.8rem;
    color: #2d5a3d;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.legal-page {
    padding: 3rem 5%;
    background: white;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.update-date {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2d5a3d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2d5a3d;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #555;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: #2d5a3d;
    text-decoration: underline;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

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

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #2d5a3d;
    font-weight: 600;
}

.thanks-details {
    color: #666;
    margin-bottom: 2.5rem;
}

.thanks-details a {
    color: #2d5a3d;
    font-weight: 600;
}

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

.next-steps {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 3rem;
}

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

.step-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2d5a3d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.step-card p {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-normal,
    .split-dark,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .testimonials-split {
        flex-direction: column;
        gap: 0;
    }

    .hero-left h2 {
        font-size: 2.2rem;
    }

    .header-right {
        gap: 1.5rem;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left {
        padding: 3rem 5%;
    }

    .hero-left h2 {
        font-size: 1.8rem;
    }

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

    .booking-form {
        padding: 2rem;
    }

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