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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    flex-wrap: wrap;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.editorial-hero {
    padding: 4rem 5% 2rem;
    background-color: #fff;
}

.editorial-hero-simple {
    padding: 3.5rem 5% 2rem;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

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

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 900px;
    margin: 3rem auto 0;
}

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

.editorial-section {
    padding: 4rem 5%;
    background-color: #fff;
}

.editorial-section-dark {
    padding: 4rem 5%;
    background-color: #1a1a1a;
    color: #f5f5f5;
}

.editorial-section-dark h2,
.editorial-section-dark h3 {
    color: #fff;
}

.editorial-section-dark p {
    color: #d0d0d0;
}

.editorial-section-image {
    padding: 3rem 5%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

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

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

.text-narrow h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.text-narrow p {
    margin-bottom: 1.5rem;
}

.inline-cta {
    margin: 2.5rem 0;
}

.text-link-cta {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.inline-image-left {
    max-width: 500px;
    width: 100%;
}

.inline-image-left img,
.inline-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.inline-image-full {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.text-content-right {
    max-width: 600px;
}

.text-content-right h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-content-right p {
    line-height: 1.7;
    color: #4a4a4a;
}

.services-editorial {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card-editorial {
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card-editorial p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 3px;
}

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

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-left: 3px solid #1a1a1a;
    padding-left: 1.5rem;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
}

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

.editorial-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f5f5f5;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #444;
    border-radius: 3px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #2a2a2a;
    color: #f5f5f5;
}

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

.submit-btn {
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 3px;
    font-weight: 500;
}

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

.closing-thought {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 2rem 0;
}

.final-cta {
    margin-top: 2rem;
}

.btn-primary-inline {
    display: inline-block;
    background-color: #fff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    border-radius: 3px;
    font-weight: 500;
}

.btn-primary-inline:hover {
    background-color: #e8e8e8;
}

.editorial-section-dark .btn-primary-inline {
    background-color: #fff;
    color: #1a1a1a;
}

.editorial-section-dark .btn-primary-inline:hover {
    background-color: #e8e8e8;
}

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 5% 1.5rem;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    text-align: center;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #333;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    background-color: #fff;
    color: #1a1a1a;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.sticky-btn:hover {
    background-color: #e8e8e8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    z-index: 200;
    display: none;
    border-top: 1px solid #333;
}

.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 {
    color: #d0d0d0;
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

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

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

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

.btn-reject:hover {
    background-color: #2a2a2a;
}

.contact-info-block {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-detail p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-detail a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.contact-detail a:hover {
    opacity: 0.7;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #fff;
    min-height: 60vh;
}

.centered {
    text-align: center;
}

.thanks-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.thanks-list {
    list-style: none;
    margin: 1.5rem 0;
}

.thanks-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a4a4a;
}

.thanks-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #1a1a1a;
}

.thanks-service-info {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: left;
}

.thanks-service-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.thanks-service-info p {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 500;
}

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

.thanks-cta-group {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page .legal-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .editorial-section-image {
        flex-direction: row;
        gap: 3rem;
    }

    .inline-image-left {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .hero-text-narrow h1 {
        font-size: 2.2rem;
    }

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

    .text-narrow h2 {
        font-size: 1.7rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

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

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

    .main-nav {
        padding: 1rem 4%;
    }

    .editorial-section,
    .editorial-section-dark {
        padding: 3rem 4%;
    }

    .hero-text-narrow h1 {
        font-size: 1.9rem;
    }

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

    .service-header h3 {
        font-size: 1.4rem;
    }

    .price-tag {
        font-size: 1.2rem;
    }
}