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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.main-nav {
    background-color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #8b3a62;
    font-family: Arial, sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #8b3a62;
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c4c0;
}

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

.hero-text-center {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.3;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    font-style: italic;
}

.story-intro,
.services-reveal,
.trust-layer,
.form-section,
.final-note,
.about-intro,
.services-detail,
.contact-content,
.thanks-content,
.legal-content {
    padding: 40px 20px;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.opening-line {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-style: italic;
}

.narrow-column p {
    margin-bottom: 26px;
}

.narrow-column h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2a2a2a;
    font-weight: 500;
}

.narrow-column h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #3a3a3a;
    font-weight: 500;
}

.inline-image-wrap {
    margin: 45px 0;
    width: 100%;
    overflow: hidden;
    background-color: #e8e4e1;
}

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

.inline-cta {
    text-align: center;
    margin: 50px 0;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b3a62;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.btn-inline:hover {
    background-color: #6d2d4d;
}

.testimonial-inline {
    margin: 45px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #8b3a62;
}

.testimonial-inline blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.service-card {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
}

.service-visual {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #d9d4d1;
    margin-bottom: 25px;
}

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.service-content p {
    margin-bottom: 15px;
}

.service-duration {
    font-size: 16px;
    color: #777;
    font-family: Arial, sans-serif;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #8b3a62;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.btn-select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #8b3a62;
    color: #fff;
    border: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.btn-select-service:hover {
    background-color: #6d2d4d;
}

.main-form {
    margin-top: 40px;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
}

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

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: #8b3a62;
    color: #fff;
    border: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-text {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding: 25px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    margin-top: 30px;
}

.main-footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 13px;
    color: #999;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    font-family: Arial, sans-serif;
    margin: 0;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #8b3a62;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #6d2d4d;
}

.btn-cookie-alt {
    background-color: #555;
    color: #fff;
}

.btn-cookie-alt:hover {
    background-color: #444;
}

.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.service-detail-card {
    margin: 60px 0;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-card:last-of-type {
    border-bottom: none;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.service-price-large {
    font-size: 36px;
    font-weight: 600;
    color: #8b3a62;
    margin: 15px 0;
    font-family: Arial, sans-serif;
}

.service-info ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-info li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b3a62;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.btn-service-cta:hover {
    background-color: #6d2d4d;
}

.services-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #8b3a62;
}

.services-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.services-note p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.contact-details {
    margin: 40px 0;
}

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

.contact-item h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    font-size: 16px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.contact-map-placeholder {
    margin: 40px 0;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.map-info {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-cta {
    margin-top: 50px;
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.contact-cta h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.btn-contact-main {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b3a62;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn-contact-main:hover {
    background-color: #6d2d4d;
}

.thanks-content {
    padding: 80px 20px;
}

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

.thanks-message h1 {
    font-size: 42px;
    color: #2a2a2a;
    margin-bottom: 25px;
}

.thanks-confirmation {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details,
.thanks-next-steps,
.thanks-contact-reminder {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b3a62;
}

.thanks-details ul,
.thanks-next-steps ul {
    margin: 20px 0;
    padding-left: 25px;
}

.thanks-details li,
.thanks-next-steps li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.btn-back-home,
.btn-view-services {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 17px;
    font-family: Arial, sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.btn-back-home {
    background-color: #8b3a62;
    color: #fff;
}

.btn-back-home:hover {
    background-color: #6d2d4d;
}

.btn-view-services {
    background-color: #e0e0e0;
    color: #2a2a2a;
}

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

.legal-page .narrow-column ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-page .narrow-column li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.last-updated {
    font-size: 16px;
    color: #777;
    font-style: italic;
}

.contact-intro {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .narrow-column h2 {
        font-size: 28px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .main-form {
        padding: 25px;
    }

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

    .service-card {
        margin: 35px 0;
    }
}