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

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

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

.header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-right a:hover {
    color: #4CAF50;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #45a049;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #4CAF50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #4CAF50;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #4CAF50;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 24px;
    text-align: center;
    color: #333;
    line-height: 1.8;
}

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

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

.split-image-left,
.split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content-left p,
.split-content-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #666;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 16px;
}

.btn-select {
    padding: 12px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1a252f;
}

.trust-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #666;
}

.testimonial-content {
    background-color: #ffffff;
}

.testimonial-content blockquote {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #4CAF50;
}

.testimonial-content blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 12px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

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

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

.booking-intro {
    text-align: center;
    margin-bottom: 40px;
}

.booking-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-intro p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group input[readonly] {
    background-color: #e9ecef;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #45a049;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #bbb;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d4f5f;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #4CAF50;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #45a049;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #666;
    margin-top: 16px;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-flex {
    display: flex;
    gap: 40px;
}

.value-box {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-box p {
    font-size: 16px;
    color: #666;
}

.cta-inline {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-inline p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.service-detail-card {
    background-color: transparent;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-price-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #4CAF50;
}

.contact-info-section {
    background-color: #ffffff;
}

.contact-block {
    margin-bottom: 30px;
}

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

.contact-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.email-display {
    color: #4CAF50;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

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

.faq-item p {
    font-size: 16px;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

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

.next-steps-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.steps-flex {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.step-box {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.step-box p {
    font-size: 16px;
    color: #666;
}

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

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-date {
    margin-top: 40px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.text-link {
    color: #4CAF50;
}

.story-split,
.team-split,
.services-preview,
.services-alternate,
.testimonial-split,
.contact-split {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-content,
    .split-layout {
        flex-direction: column;
    }

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

    .hero-text,
    .hero-image,
    .split-image-left,
    .split-image-right,
    .split-content-left,
    .split-content-right {
        min-height: 400px;
    }

    .trust-grid,
    .values-flex,
    .steps-flex,
    .footer-grid {
        flex-direction: column;
    }

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

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

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

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