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

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

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

.cookie-banner.visible {
    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;
    min-width: 300px;
}

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

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

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

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

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

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

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

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

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 520px;
}

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

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

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

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

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

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

.intro-image-left {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

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

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

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

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

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 16px;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 0 20px 20px;
}

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

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

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

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

.booking-content-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-content-left p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.booking-form-right {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 480px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

.trust-image-left {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

.trust-content-right {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-left p {
    color: #b0b0b0;
    font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-contact p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #3498db;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

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

.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-color: #2c3e50;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
}

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

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

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

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

.story-image-left {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

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

.story-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

.values-content-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.values-image-right {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.commitment-image-left {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

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

.commitment-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

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

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

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

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

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3498db;
    font-weight: 700;
}

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

.booking-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 48px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.2s;
}

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

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

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

.contact-content-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-content-left > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-booking-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-booking-note h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-booking-note p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-booking-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-booking-note a:hover {
    text-decoration: underline;
}

.contact-image-right {
    flex: 1;
    background-color: #d4d9de;
    overflow: hidden;
}

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

.location-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.thanks-details {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
    padding-left: 40px;
    position: relative;
    counter-increment: step-counter;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-booked {
    font-size: 17px;
    color: #2c3e50;
    padding: 16px;
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    margin-bottom: 24px;
}

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

.thanks-contact h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-contact p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

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

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

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .trust-split,
    .story-split,
    .values-split,
    .commitment-split,
    .page-hero-split,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-content-left,
    .intro-content-right,
    .booking-content-left,
    .booking-form-right,
    .trust-content-right,
    .story-content-right,
    .values-content-left,
    .commitment-content-right,
    .page-hero-content,
    .contact-content-left,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-content-left h1,
    .page-hero-content h1,
    .contact-content-left h1 {
        font-size: 36px;
    }

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

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

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

    .team-member {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
    }

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