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

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

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #d4a373;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    padding: 80px 5% 80px 8%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #faf8f5;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 500px;
    padding-right: 40px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 500px;
    background-color: #e8dfd5;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d4a373;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #d4a373;
    border: 2px solid #d4a373;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #d4a373;
    color: #ffffff;
}

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.diagonal-text {
    flex: 1;
    padding-left: 60px;
}

.diagonal-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.diagonal-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.diagonal-visual {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
    background-color: #f5f0ea;
}

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

.services-offset {
    padding: 120px 5% 100px;
    background-color: #faf8f5;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 40px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.service-card.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.service-card.card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 280px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e8dfd5;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 12px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 15px;
    color: #666;
    font-size: 15px;
}

.service-card .price {
    margin: 20px 25px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #d4a373;
}

.why-us-overlap {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 80px;
    background-color: #ffffff;
    position: relative;
}

.why-content {
    flex: 1;
    z-index: 5;
}

.why-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

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

.why-image-float {
    flex: 1;
    position: relative;
    transform: translateX(40px);
    background-color: #f0ebe5;
}

.why-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.1);
}

.booking-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe5 100%);
}

.booking-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.booking-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.booking-intro p {
    font-size: 18px;
    color: #666;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a373;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #d4a373;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #c08d5a;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 80px 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.indicator {
    text-align: center;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4a373;
    margin-bottom: 10px;
}

.indicator-text {
    font-size: 16px;
    color: #ccc;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4a373;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4a373;
}

.disclaimer {
    background-color: #f8f9fa;
    padding: 25px 5%;
    font-size: 13px;
    color: #6c757d;
    text-align: center;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #d4a373;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #c08d5a;
}

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

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

.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 100px 5% 80px;
    text-align: center;
}

.about-hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.story-section {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.story-image-left {
    flex: 1;
    background-color: #f5f0ea;
}

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

.story-content-right {
    flex: 1;
    padding-left: 40px;
}

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

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

.values-section {
    padding: 100px 5%;
    background-color: #faf8f5;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a373;
}

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

.team-section {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 70px;
    background-color: #ffffff;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

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

.cta-section-about {
    padding: 80px 5%;
    background: linear-gradient(135deg, #d4a373 0%, #c08d5a 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section-about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section-about p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.services-hero {
    background-color: #faf8f5;
    padding: 80px 5%;
    text-align: center;
}

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

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

.services-detail-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: #faf8f5;
    padding: 40px;
    border-radius: 10px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

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

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

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4a373;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

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

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #666;
}

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

.booking-cta-services {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: #ffffff;
}

.booking-cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.booking-cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-hero {
    background-color: #faf8f5;
    padding: 80px 5%;
    text-align: center;
}

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

.contact-hero p {
    font-size: 20px;
    color: #666;
}

.contact-info-section {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    background-color: #ffffff;
}

.contact-block {
    flex: 1;
}

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

.contact-item h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-details {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 8px;
}

.email-display {
    font-weight: 600;
    color: #d4a373;
    user-select: all;
}

.opening-hours {
    max-width: 400px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-row .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-row .time {
    color: #666;
}

.contact-visual {
    flex: 1;
    background-color: #f5f0ea;
}

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

.visit-info {
    padding: 100px 5%;
    background-color: #faf8f5;
}

.visit-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.info-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d4a373;
}

.info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.appointment-cta {
    padding: 80px 5%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.appointment-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.appointment-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #faf8f5;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #d4a373;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

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

.selected-service {
    background-color: #faf8f5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #555;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #d4a373;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    padding-top: 8px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 5% 60px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul {
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #d4a373;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content-offset {
        max-width: 100%;
        padding-right: 0;
    }

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

    .hero-image-overlap {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .intro-diagonal,
    .why-us-overlap,
    .story-section,
    .team-section,
    .service-detail-card,
    .contact-info-section {
        flex-direction: column;
    }

    .diagonal-text,
    .story-content-right {
        padding-left: 0;
    }

    .diagonal-visual,
    .why-image-float {
        transform: none;
    }

    .services-header-left {
        padding-left: 0;
    }

    .service-card.card-large,
    .service-card.card-medium,
    .service-card.card-small {
        flex: 1 1 100%;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 40px;
    }

    .footer-asymmetric {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}