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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 800px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.story-section {
    padding: 3rem 0;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem 0;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem 0;
    color: #2a2a2a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 2px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.image-grid-inline {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
}

.grid-image {
    flex: 1;
    width: 50%;
    height: auto;
    border-radius: 2px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    padding: 2rem 0;
    margin: 2.5rem 0;
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    color: #2a2a2a;
}

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

.cta-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #333333;
}

.services-inline-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.service-card-editorial p {
    margin-bottom: 1rem;
}

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

.btn-select-service {
    padding: 0.7rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-editorial {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #e8f4f8;
    border-radius: 3px;
}

.selected-service-display {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 2px;
    border-left: 4px solid #1a1a1a;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: #666;
}

.closing-cta {
    margin: 4rem 0 2rem 0;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.closing-cta h2 {
    margin-top: 0;
}

.btn-cta-editorial {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 2px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn-cta-editorial:hover {
    background-color: #333333;
}

.btn-secondary {
    background-color: #666666;
}

.btn-secondary:hover {
    background-color: #555555;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin-top: 3rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    margin-top: 5rem;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.page-header {
    padding: 4rem 0 2rem 0;
    background-color: #f5f5f5;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-block {
    margin-bottom: 2rem;
}

.service-price-prominent {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0 1.5rem 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-block {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

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

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

.contact-text-block {
    flex: 1;
}

.contact-cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f5f5;
    text-align: center;
    border-radius: 3px;
}

.thanks-section {
    padding: 4rem 0;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    margin-top: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f4e8;
    border-radius: 3px;
    margin: 2rem 0;
    border-left: 4px solid #2d862d;
}

.next-steps {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 3px;
}

.step-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.thanks-cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem 0;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
}

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

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

.legal-page a {
    color: #1a1a1a;
    word-break: break-all;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-item {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.cookie-item h4 {
    margin-top: 0;
}

.values-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 3px;
}

.value-item {
    margin-bottom: 1.5rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

.service-notes {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff8e8;
    border-radius: 3px;
    border-left: 4px solid #d4a017;
}

.service-notes h3 {
    margin-top: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #357abd;
}

.btn-cookie.btn-secondary {
    background-color: #666666;
    color: #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background-color: #555555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .image-grid-inline {
        flex-direction: column;
    }

    .grid-image {
        width: 100%;
    }

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

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