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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #2c3e50;
}

.hero-text {
    max-width: 560px;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

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

.cta-primary:hover {
    background-color: #2980b9;
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

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

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

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

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    flex: 0 0 200px;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

.service-info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    flex: 1;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
}

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

.booking-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.booking-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #2980b9;
}

.trust-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #ecf0f1;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #2c3e50;
}

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

.hero-content-alt h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content-alt p {
    font-size: 20px;
    line-height: 1.6;
    color: #ecf0f1;
}

.hero-image-alt {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

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

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.values-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 40px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

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

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.approach-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.page-hero-simple {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #ffffff;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    min-height: 450px;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-includes {
    list-style: none;
    margin-top: 24px;
}

.service-includes li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.booking-cta-section {
    padding: 80px 40px;
    background-color: #3498db;
    text-align: center;
}

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

.booking-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.contact-hero {
    padding: 100px 40px;
    background-color: #2c3e50;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.contact-details {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background-color: #f8f9fa;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.contact-map-placeholder {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.contact-additional {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.contact-additional-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.contact-additional-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

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

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

.legal-content ul {
    margin: 16px 0 24px 24px;
    list-style-position: outside;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-story-split,
    .team-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .booking-content-split {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

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

    .split-content h2 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

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

    .service-card {
        min-width: 100%;
    }
}