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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: #fff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu li {
    padding: 0.8rem 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c5f4f 0%, #4a8070 100%);
    padding: 4rem;
}

.hero-content {
    max-width: 500px;
    color: #fff;
}

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

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    background: #fff;
    color: #2c5f4f;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

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

.intro-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
    background: #e0e0e0;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f4f;
}

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

.services-section {
    padding: 5rem 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    background: #d0d0d0;
    height: 250px;
}

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

.service-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
}

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

.btn-select-service {
    background: #2c5f4f;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

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

.booking-section {
    padding: 5rem 0;
    background: #f4f8f6;
}

.booking-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-left {
    flex: 1;
}

.booking-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.booking-left p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.selected-service-display {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    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 {
    background: #2c5f4f;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}

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

.testimonials-section {
    padding: 5rem 0;
    background: #fff;
}

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

.testimonials-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

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

.disclaimer-section {
    padding: 3rem 0;
    background: #f0f0f0;
}

.disclaimer-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.footer {
    background: #222;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #4a8070;
}

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

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

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

.footer-col a:hover {
    color: #4a8070;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

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

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

.btn-primary {
    background: #2c5f4f;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #2c2c2c;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
}

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

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

.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    min-height: 400px;
    border-radius: 8px;
}

.about-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5f4f 0%, #4a8070 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 5rem 0;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.about-image {
    flex: 1;
    background: #d0d0d0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f4f;
}

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

.services-list-section {
    padding: 5rem 0;
}

.services-list-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f4f;
}

.legal-page {
    padding: 5rem 0;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5f4f;
}

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

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

.legal-content ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .split-layout,
    .booking-wrapper,
    .contact-wrapper,
    .about-split {
        flex-direction: column;
    }

    .about-split.reverse {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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