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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #c084a1;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 60px 8% 60px 8%;
    background-color: #fef8fb;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #e8d4dd;
}

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

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

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

.intro-alternating {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
}

.intro-image-left {
    flex: 1;
    background-color: #f5eff2;
}

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

.intro-text-right {
    flex: 1;
}

.intro-text-right h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

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

.services-header-centered h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header-centered p {
    font-size: 18px;
    color: #546e7a;
    max-width: 680px;
    margin: 0 auto;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding-bottom: 24px;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #f5eff2;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 20px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin: 0 20px 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    color: #c084a1;
    font-weight: 700;
    margin: 0 20px 16px;
}

.btn-select-service {
    margin: 0 20px;
    padding: 10px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.booking-form-section {
    padding: 80px 8%;
    background-color: #fef8fb;
}

.form-container-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-left p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.trust-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.trust-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-content-centered p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 8% 20px;
}

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

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer-disclaimer {
    border-top: 1px solid #3d5266;
    padding-top: 24px;
    margin-bottom: 24px;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 8%;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

.btn-cookie-reject:hover {
    opacity: 0.9;
}

.page-header {
    padding: 80px 8%;
    background-color: #fef8fb;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #546e7a;
}

.about-split-content {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-block p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-image-block {
    flex: 1;
    background-color: #f5eff2;
}

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

.about-values {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.about-values h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.value-item {
    flex: 0 1 calc(50% - 20px);
}

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

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

.about-team-section {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
}

.team-image-left {
    flex: 1;
    background-color: #f5eff2;
}

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

.team-text-right {
    flex: 1;
}

.team-text-right h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-text-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-approach {
    padding: 80px 8%;
    background-color: #ffffff;
}

.approach-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-centered h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-centered p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 8%;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f5eff2;
}

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

.service-detail-content {
    flex: 1;
}

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

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

.service-pricing-box {
    background-color: #fef8fb;
    padding: 16px 20px;
    border-radius: 4px;
    margin: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #546e7a;
    font-weight: 600;
}

.price-value {
    font-size: 24px;
    color: #c084a1;
    font-weight: 700;
}

.services-cta-section {
    padding: 80px 8%;
    background-color: #fef8fb;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-cta-section p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

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

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

.contact-split-layout {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    background-color: #f5eff2;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 14px;
    color: #2c3e50;
}

.contact-additional-info {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.contact-additional-info h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.contact-additional-info p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-page-content {
    padding: 100px 8%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #fef8fb;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-service-info p {
    font-size: 17px;
    color: #2c3e50;
    margin: 0;
}

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

.btn-back-home,
.btn-view-services {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.btn-back-home {
    background-color: #c084a1;
    color: #ffffff;
}

.btn-back-home:hover {
    opacity: 0.9;
}

.btn-view-services {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-view-services:hover {
    opacity: 0.9;
}

.legal-page {
    padding: 60px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-alternating,
    .form-container-split,
    .about-split-content,
    .about-team-section,
    .service-detail-item,
    .contact-split-layout {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

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

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

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

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

    .page-header h1 {
        font-size: 32px;
    }
}