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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 250px;
}

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

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

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

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

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

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

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

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

.nav a:hover {
    color: #c19a6b;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2c2c2c;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

.hero-text-offset {
    position: relative;
    margin-left: 45%;
    z-index: 10;
    padding: 80px 40px;
    background-color: #fff;
    max-width: 600px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-inner p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #c19a6b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #a67c52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4);
}

.intro-offset {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.intro-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-image-left {
    flex: 0 0 45%;
    background-color: #2c2c2c;
}

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

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

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

.intro-text-stacked p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-cards-irregular {
    padding: 120px 0;
    background-color: #fff;
}

.section-header-offset {
    margin-bottom: 70px;
    margin-left: 10%;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 30px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #c19a6b;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #c19a6b;
    transform: translateY(-2px);
}

.cta-section-inline {
    text-align: center;
    margin-top: 80px;
}

.cta-section-inline p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
}

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

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

.trust-section-diagonal {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    position: relative;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.trust-item {
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #c19a6b;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.trust-item p {
    font-size: 16px;
    color: #555;
}

.booking-section-overlap {
    padding: 100px 0;
    background-color: #fff;
}

.booking-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-intro {
    flex: 0 0 35%;
}

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

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

.booking-form-wrapper {
    flex: 1;
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.final-cta-offset {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ccc;
}

.cta-tertiary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #c19a6b;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-tertiary:hover {
    background-color: #a67c52;
    transform: scale(1.05);
}

.footer {
    background-color: #0a0a0a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    margin-bottom: 20px;
    color: #999;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p:last-child {
    font-size: 13px;
}

@media (max-width: 1024px) {
    .hero-visual {
        width: 100%;
    }

    .hero-text-offset {
        margin-left: 0;
        margin-top: 400px;
    }

    .intro-layout {
        flex-direction: column;
    }

    .intro-image-left {
        flex: 1;
        width: 100%;
    }

    .cards-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 450px;
        margin-top: 0 !important;
    }

    .booking-layout {
        flex-direction: column;
    }

    .booking-intro {
        flex: 1;
    }
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    text-align: center;
    color: #fff;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 20px;
    color: #ccc;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-block {
    margin-bottom: 60px;
}

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

.about-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

.about-image-section {
    margin: 60px 0;
    background-color: #2c2c2c;
}

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

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-section > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.team-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 6px;
}

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

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

.about-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
}

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

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

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

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

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

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

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

.service-detail-content ul {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c19a6b;
    font-weight: 700;
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cta {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
    color: #fff;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 35px;
}

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

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

.contact-visual {
    flex: 0 0 45%;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

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

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #c19a6b;
}

.thanks-intro {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.confirmation-details {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
}

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

.next-steps h2,
.preparation-tips h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

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

.preparation-tips p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-content strong {
    color: #333;
}

@media (max-width: 1024px) {
    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-visual {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .intro-text-stacked h2,
    .section-header-offset h2,
    .trust-content h2,
    .booking-intro h2,
    .final-cta-content h2 {
        font-size: 28px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .service-detail-content h2,
    .contact-info h2,
    .legal-content h1 {
        font-size: 28px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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