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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1d23;
    background-color: #fafafa;
}

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-block .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d23;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-main {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-main a {
    color: #4a4d55;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-main a:hover {
    color: #1a1d23;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #0d0f14;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #5a5d65;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    background-color: #2a7d5f;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #236b51;
}

.hero-image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.intro-diagonal {
    background-color: #f5f4f1;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.intro-diagonal .intro-content {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.intro-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #0d0f14;
}

.intro-diagonal p {
    font-size: 1.15rem;
    color: #4a4d55;
    line-height: 1.8;
}

.intro-visual {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header-offset {
    margin-bottom: 3rem;
    padding-left: 5rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: #0d0f14;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #5a5d65;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 1 1 calc(50% - 1rem);
}

.service-medium {
    flex: 1 1 calc(50% - 1rem);
}

.service-small {
    flex: 1 1 calc(33.333% - 1.33rem);
}

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

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

.service-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.service-info p {
    font-size: 0.95rem;
    color: #5a5d65;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2a7d5f;
    margin-bottom: 1.2rem;
}

.btn-select-service {
    background-color: #1a1d23;
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0d0f14;
}

.form-section-offset {
    background-color: #e8e5df;
    padding: 5rem 2rem;
    margin: 6rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1d23;
}

.form-intro p {
    font-size: 1rem;
    color: #5a5d65;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1d23;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

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

.btn-submit {
    background-color: #2a7d5f;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.trust-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1d23;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.footer-asymmetric {
    background-color: #1a1d23;
    color: #e0e0e0;
    padding: 4rem 2rem 1rem 2rem;
    margin-top: 6rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background-color: #252830;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2d35;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1d23;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2a7d5f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #236b51;
}

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

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

.page-hero-about,
.page-hero-services,
.contact-page-hero {
    background-color: #f5f4f1;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1,
.page-hero-services h1,
.contact-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #0d0f14;
}

.page-hero-content p,
.page-hero-services p,
.contact-page-hero p {
    font-size: 1.2rem;
    color: #5a5d65;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block-left,
.story-block-right {
    flex: 1;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
}

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

.story-block-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    color: #1a1d23;
}

.story-block-right p {
    font-size: 1.05rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section-offset {
    background-color: #e8e5df;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.values-intro {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.values-intro h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1d23;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.value-item p {
    font-size: 1rem;
    color: #5a5d65;
    line-height: 1.7;
}

.team-approach {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1d23;
}

.approach-content > p {
    font-size: 1.1rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 1.8rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2a7d5f;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1d23;
}

.step-item p {
    font-size: 1rem;
    color: #5a5d65;
    line-height: 1.7;
}

.commitment-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    color: #1a1d23;
}

.commitment-text p {
    font-size: 1.05rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.commitment-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-detail-visual,
.service-detail-info {
    flex: 1;
}

.service-detail-visual {
    border-radius: 10px;
    overflow: hidden;
}

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

.service-detail-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.price-display {
    font-size: 2rem;
    font-weight: 800;
    color: #2a7d5f;
    margin-bottom: 1.5rem;
}

.service-detail-info p {
    font-size: 1.05rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.service-includes {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.service-includes li {
    font-size: 1rem;
    color: #5a5d65;
    margin-bottom: 0.6rem;
}

.services-cta-section {
    background-color: #f5f4f1;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.cta-content p {
    font-size: 1.1rem;
    color: #5a5d65;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background-color: #2a7d5f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #236b51;
}

.contact-details-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-info-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.contact-block p {
    font-size: 1rem;
    color: #4a4d55;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #7a7d85;
    font-style: italic;
}

.contact-directions {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.directions-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    color: #1a1d23;
}

.directions-content p {
    font-size: 1.05rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.contact-booking-reminder {
    background-color: #e8e5df;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.booking-reminder-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.booking-reminder-content p {
    font-size: 1.1rem;
    color: #5a5d65;
    margin-bottom: 2rem;
}

.btn-contact-booking {
    display: inline-block;
    background-color: #2a7d5f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-contact-booking:hover {
    background-color: #236b51;
}

.thanks-page-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
    display: block;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a1d23;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5a5d65;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.booking-summary {
    background-color: #f5f4f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.booking-summary p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4a4d55;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

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

.thanks-next-steps ul li {
    font-size: 1rem;
    color: #4a4d55;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a7d5f;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-return-home,
.btn-view-services {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-return-home {
    background-color: #2a7d5f;
    color: #ffffff;
}

.btn-return-home:hover {
    background-color: #236b51;
}

.btn-view-services {
    background-color: transparent;
    color: #2a7d5f;
    border: 2px solid #2a7d5f;
}

.btn-view-services:hover {
    background-color: #f0f0f0;
}

.thanks-info-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    color: #1a1d23;
}

.info-content p {
    font-size: 1.05rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1d23;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1d23;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1d23;
}

.legal-content p {
    font-size: 1rem;
    color: #4a4d55;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a4d55;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

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

.legal-content a:hover {
    color: #236b51;
}

.legal-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.legal-content table th,
.legal-content table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.legal-content table th {
    background-color: #f5f4f1;
    font-weight: 700;
    color: #1a1d23;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .about-story-section,
    .commitment-section,
    .service-detail-block {
        flex-direction: column;
    }

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

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

    .contact-info-blocks {
        flex-direction: column;
    }

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

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