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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.813rem;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #0056b3;
}

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

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

.nav-links a:hover {
    color: #0056b3;
}

.editorial-content {
    background-color: #ffffff;
}

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

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

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e9ecef;
}

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

.hero-text-overlay {
    margin-top: 2rem;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #495057;
    line-height: 1.6;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0 0.125rem 0 0;
    color: #0056b3;
}

.intro-section p {
    margin-bottom: 1.25rem;
    font-size: 1.063rem;
}

.content-narrow h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.25rem;
    font-size: 1.063rem;
    color: #343a40;
}

.content-narrow a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content-narrow a:hover {
    color: #003d82;
    text-decoration: underline;
}

.inline-image-section {
    margin: 2.5rem 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    background-color: #e9ecef;
    object-fit: cover;
}

.inline-image-section figcaption {
    margin-top: 0.75rem;
    font-size: 0.938rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0056b3;
    padding: 1.75rem;
    margin: 2.5rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    border: none;
    padding: 0;
}

.testimonial-inline p {
    font-size: 1.125rem;
    font-style: italic;
    color: #343a40;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    color: #6c757d;
    font-size: 0.938rem;
}

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

.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.063rem;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #003d82;
    text-decoration: none;
    color: #ffffff;
}

.services-reveal {
    margin-top: 3rem;
    padding-top: 2rem;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e9ecef;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    background-color: #e9ecef;
}

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

.service-content h2,
.service-content h3 {
    margin-top: 0;
}

.service-details ul {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
}

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

.service-duration {
    font-size: 0.938rem;
    color: #6c757d;
}

.service-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0056b3;
}

.form-section-editorial {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #343a40;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.submit-button {
    background-color: #0056b3;
    color: #ffffff;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.063rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #003d82;
}

.disclaimer-section {
    margin-top: 3rem;
    padding: 1.75rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #856404;
}

.disclaimer-section p {
    color: #856404;
    margin-bottom: 0;
}

.references-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.references-section h3 {
    margin-top: 0;
}

.references-list {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
}

.references-list a {
    color: #0056b3;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.content-section {
    margin-bottom: 2rem;
}

.cta-section-editorial {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: #e7f3ff;
    border-radius: 4px;
    text-align: center;
}

.cta-section-editorial h2 {
    margin-top: 0;
}

.contact-info-section {
    margin: 3rem 0;
}

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

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.contact-text {
    font-size: 1.063rem;
    color: #343a40;
    line-height: 1.8;
}

.contact-cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.thanks-section {
    text-align: center;
    padding: 3rem 0;
}

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

.selected-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e7f3ff;
    border-radius: 4px;
}

.thanks-cta {
    margin-top: 3rem;
}

.legal-content {
    margin-top: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

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

.main-footer {
    background-color: #212529;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: #adb5bd;
    font-size: 0.938rem;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    color: #6c757d;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #0056b3;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.938rem;
    color: #343a40;
}

.cookie-content a {
    color: #0056b3;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: #0056b3;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #003d82;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #545b62;
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .hero-lead {
        font-size: 1.125rem;
    }

    .page-header h1 {
        font-size: 1.875rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}