* {
    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;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-flow {
    width: 100%;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.hero-editorial {
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-text-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 5%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-text-layer h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.story-intro,
.problem-section,
.solution-reveal,
.trust-building,
.services-editorial,
.urgency-section,
.form-section,
.final-thought,
.about-intro,
.philosophy-section,
.expertise-section,
.process-section,
.values-section,
.cta-section,
.services-intro,
.service-detailed,
.contact-intro,
.contact-info,
.contact-note,
.location-section,
.thanks-content,
.additional-info {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2a2a2a;
}

p {
    margin-bottom: 1.3rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.inline-cta {
    text-align: center;
    margin: 3rem 0;
}

.cta-link {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.insight-box {
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
    padding: 1.8rem 2rem;
    margin: 2.5rem 0;
}

.insight-box p {
    margin-bottom: 0;
}

.testimonial-inline {
    background-color: #ffffff;
    border-left: 3px solid #d0d0d0;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 0.9rem;
    color: #6a6a6a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.select-service-btn:hover {
    background-color: #3a3a3a;
}

.urgency-section {
    background-color: #fff8e1;
    padding: 2rem;
    border-radius: 2px;
    text-align: center;
}

.spots-remaining {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

.btn-submit,
.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.btn-submit:hover,
.btn-primary:hover {
    background-color: #3a3a3a;
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5%;
    margin-top: 5rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-cta-btn:hover {
    background-color: #3a3a3a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 200;
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-includes {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
}

.service-includes h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.service-includes ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}

.service-includes li {
    margin-bottom: 0.5rem;
}

.service-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 1.5rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block a {
    color: #1a1a1a;
    text-decoration: underline;
}

.info-block a:hover {
    opacity: 0.7;
}

.legal-page section {
    margin-bottom: 2.5rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-bottom: 2rem;
}

.confirmation-box {
    background-color: #f0f8ff;
    border: 1px solid #b0d4f1;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 2px;
}

.confirmation-box p {
    margin-bottom: 0.5rem;
}

.next-steps {
    margin-left: 2rem;
    margin-top: 1rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
}

.thanks-actions {
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-text-layer h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .content-narrow {
        padding: 2rem 5%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-layer h1 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn-secondary {
        display: block;
        margin-bottom: 1rem;
        text-align: center;
    }
}