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

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

.main-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.main-nav a:hover {
    color: #2c5f7d;
}

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

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

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

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

.hero-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 500px;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2c5f7d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #234d63;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.intro-image {
    flex: 1;
    min-height: 500px;
}

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

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

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

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

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

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-card-split {
    display: flex;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-image {
    flex: 1;
    min-height: 350px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background: #2c5f7d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    align-self: flex-start;
}

.btn-select:hover {
    background: #234d63;
}

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

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

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

.form-container p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.form-visual {
    flex: 1;
    min-height: 600px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2c5f7d;
}

.btn-submit {
    padding: 14px 32px;
    background: #2c5f7d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.btn-submit:hover {
    background: #234d63;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 20px;
}

.cookie-content p {
    color: #fff;
    margin: 0;
}

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

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

.btn-accept {
    background: #2c5f7d;
    color: #fff;
}

.btn-accept:hover {
    background: #234d63;
}

.btn-reject {
    background: #555;
    color: #fff;
}

.btn-reject:hover {
    background: #444;
}

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

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

.page-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 500px;
}

.page-hero-image {
    flex: 1;
    min-height: 400px;
}

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

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    min-height: 500px;
}

.values-split {
    display: flex;
    min-height: 500px;
    background: #f8f9fa;
}

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

.values-image {
    flex: 1;
    min-height: 500px;
}

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

.values-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

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

.team-approach h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    gap: 40px;
}

.approach-item {
    flex: 1;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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

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

.services-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
    gap: 60px;
}

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

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

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

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

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

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

.service-pricing .price-note {
    font-size: 14px;
    color: #888;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
}

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

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

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

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

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c5f7d;
    font-weight: 600;
}

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

.info-note {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #2c5f7d;
    margin-top: 32px;
}

.info-note p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0;
}

.contact-map {
    flex: 1;
    min-height: 600px;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-details {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-note {
    background: #e8f4f8;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.thanks-next li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7d;
    font-weight: 700;
}

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

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

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

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

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .page-hero-split,
    .about-content-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .footer-grid,
    .approach-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .hero-left h1,
    .page-hero-content h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-container h1 {
        font-size: 32px;
    }

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