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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d2e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-links a:hover {
    color: #1a4d2e;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: #f4f7f5;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a4d2e;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #153d24;
}

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

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

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a4d2e;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview {
    padding: 100px 40px;
    background: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.services-intro p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 24px;
    color: #1a4d2e;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.service-card .price {
    padding: 0 24px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #1a4d2e;
}

.services-link {
    text-align: center;
    margin-top: 60px;
}

.services-link a {
    display: inline-block;
    padding: 14px 36px;
    background: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.services-link a:hover {
    background: #153d24;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
    background: #f4f7f5;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a4d2e;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a4d2e;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.process-image {
    flex: 1;
    background: #d4e3d8;
}

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

.testimonials {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a4d2e;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #1a4d2e;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #1a4d2e;
}

.booking-section {
    padding: 100px 40px;
    background: #f4f7f5;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a4d2e;
}

.booking-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.booking-form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a4d2e;
}

.submit-btn {
    padding: 16px 32px;
    background: #1a4d2e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #153d24;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #e8ede9;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
}

.site-footer {
    background: #1a4d2e;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #d4e3d8;
}

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

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

.footer-column ul li a {
    color: #d4e3d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #d4e3d8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #153d24;
}

.cookie-btn.reject {
    background: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #5a6268;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .booking-container {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .process-content {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-image,
    .process-image {
        min-height: 400px;
    }

    .nav-links {
        gap: 24px;
    }

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