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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

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

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

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.hero-right {
    flex: 1;
    min-height: 600px;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

.intro-split {
    padding: 80px 0;
}

.split-container {
    display: flex;
    align-items: stretch;
    gap: 0;
}

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

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

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

.split-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.split-image {
    flex: 1;
    min-height: 500px;
    background-color: #ecf0f1;
}

.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px;
    color: #5a6c7d;
    font-size: 16px;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    padding: 15px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-select.selected {
    background: #27ae60;
}

.form-split {
    padding: 80px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.form-error {
    padding: 12px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.trust-item .author {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 calc(25% - 40px);
    min-width: 220px;
}

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

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

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

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

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

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.5;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-cookie {
    padding: 10px 24px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    padding: 10px 24px;
    background: #7f8c8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie-alt:hover {
    background: #5d6d7e;
}

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

.page-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    padding: 80px 0;
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    text-align: center;
}

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

.value-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.approach-split {
    padding: 80px 0;
}

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

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background: #ecf0f1;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-includes li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #5a6c7d;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

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

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-visual {
    flex: 1;
    min-height: 450px;
}

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

.booking-cta h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.booking-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.contact-split {
    padding: 80px 0;
}

.contact-info {
    margin: 30px 0;
}

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

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

.info-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: #e8f4f8;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.booking-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 500px;
    text-align: left;
}

.booking-summary h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.booking-summary p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

.legal-page {
    padding: 80px 0;
}

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

.legal-page .updated {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 14px;
}

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

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

.legal-page p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 40px 20px;
    }

    .service-split,
    .service-split.reverse {
        flex-direction: column;
    }

    .service-content {
        padding: 30px 20px;
    }

    .service-visual {
        min-height: 300px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .ad-notice {
        flex-basis: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 17px;
    }

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

    .services-preview h2 {
        font-size: 32px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }
}