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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-cookie.accept {
    background-color: var(--success-color);
    color: var(--white);
}

.btn-cookie.accept:hover {
    background-color: #27ae60;
}

.btn-cookie.reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-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: var(--primary-color);
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
}

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

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.hero-image-right {
    flex: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #b3944e;
    transform: translateY(-2px);
}

.intro-alternating {
    padding: 100px 0;
}

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

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

.split-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.split-text {
    flex: 1;
    padding: 60px 80px;
}

.split-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.services-showcase {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.section-header-center h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card-split:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.booking-section-split {
    padding: 100px 40px;
    background-color: var(--light-bg);
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

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

.booking-info-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-info-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.booking-selected-service {
    margin-top: 30px;
}

.selected-display {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.selected-display p {
    font-size: 16px;
    margin: 0;
}

.selected-display strong {
    color: var(--primary-color);
}

.booking-form-right {
    flex: 1;
    background-color: var(--white);
    padding: 60px;
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-choose-split {
    padding: 100px 0;
    background-color: var(--white);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #999;
}

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

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-text-side h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-text-side p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-visual-side {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.about-story-split,
.values-section-split {
    padding: 100px 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.team-section {
    padding: 100px 40px;
    background-color: var(--light-bg);
}

.team-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.team-member-card {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.member-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.member-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.cta-section-split {
    padding: 100px 40px;
    background-color: var(--secondary-color);
}

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

.cta-content-centered h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 17px;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--light-bg);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 80px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

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

.service-includes ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.services-cta-section {
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.contact-info-split {
    padding: 100px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.email-display {
    color: var(--text-color);
    pointer-events: none;
    user-select: text;
}

.location-section {
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.location-info-centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.location-info-centered p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-features {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    max-width: 300px;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    color: #555;
}

.thanks-section-split {
    padding: 100px 40px;
    background-color: var(--light-bg);
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container-centered h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-main-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--success-color);
}

.service-confirmation p {
    font-size: 16px;
    color: var(--text-color);
}

.service-confirmation span {
    font-weight: 700;
    color: var(--primary-color);
}

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

.next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.steps-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

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

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.thanks-info-split {
    padding: 80px 0;
}

.preparation-list {
    list-style: none;
    padding: 0;
}

.preparation-list li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.preparation-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.legal-page {
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 20px;
}

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

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

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .split-container,
    .service-card-split,
    .booking-container,
    .service-detail-split,
    .page-hero-split {
        flex-direction: column;
    }

    .service-card-split:nth-child(even) {
        flex-direction: column;
    }

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

    .hero-content-left,
    .split-text,
    .service-info,
    .booking-info-left,
    .booking-form-right,
    .service-detail-content,
    .hero-text-side {
        padding: 40px 30px;
    }

    .hero-content-left h1,
    .section-header-center h2,
    .cta-content-centered h2 {
        font-size: 32px;
    }

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

    .footer-content-split,
    .team-grid-split,
    .location-features {
        flex-direction: column;
    }

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

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