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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ddd;
}

.header-editorial {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.story-flow {
    background-color: #fff;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    background-color: #e8e8e8;
}

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

.hero-text-overlay {
    padding: 50px 0 20px;
    text-align: left;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}

.intro-narrow {
    margin: 60px 0;
}

.intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.content-block {
    margin: 70px 0;
}

.content-block h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-block h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 24px;
    color: #2c2c2c;
}

.inline-image-wrapper {
    margin: 50px 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.insight-section {
    margin: 70px 0;
}

.insight-box {
    background-color: #f9f7f4;
    padding: 40px;
    border-left: 4px solid #d4a574;
    border-radius: 2px;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.insight-box a {
    color: #2a5885;
    text-decoration: none;
    border-bottom: 1px solid #2a5885;
}

.insight-box a:hover {
    border-bottom-color: transparent;
}

.testimonial-inline {
    margin: 70px 0;
    padding: 0 30px;
}

.testimonial-inline blockquote {
    border-left: 3px solid #1a1a1a;
    padding-left: 30px;
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pillar-item {
    margin: 50px 0;
}

.pillar-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-inline {
    margin: 80px 0;
}

.cta-box {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
}

.cta-box h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.btn-primary {
    display: inline-block;
    background-color: #d4a574;
    color: #1a1a1a;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s;
}

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

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.services-intro {
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin: 0 25px 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section-editorial {
    margin: 80px 0;
    padding: 50px 40px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.form-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-section-editorial > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form-editorial {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 70px 0 0;
    padding: 30px;
    background-color: #fff8f0;
    border-left: 4px solid #d4a574;
    border-radius: 2px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

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

.references-list {
    list-style: decimal;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.page-hero-simple {
    margin-bottom: 60px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.service-detail {
    margin: 70px 0;
}

.service-detail-header {
    margin-bottom: 30px;
}

.service-detail-header img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f0f0f0;
    margin-bottom: 25px;
}

.service-detail-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-detail-info h2 {
    font-size: 32px;
    margin: 0;
    color: #1a1a1a;
    flex: 1;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #d4a574;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detail-content ul {
    margin: 20px 0 20px 30px;
    list-style: disc;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-info-section {
    margin: 60px 0;
}

.contact-details {
    margin-bottom: 50px;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.email-display {
    font-weight: 600;
    color: #2c2c2c;
}

.note-text {
    font-size: 15px;
    color: #888;
    margin-top: 5px;
}

.contact-image-wrapper {
    margin: 50px 0;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.thanks-hero {
    text-align: center;
    margin-bottom: 60px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.step-item {
    padding: 30px;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    margin: 0;
    color: #555;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-section {
    margin: 40px 0;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 16px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a4a4a;
    font-size: 16px;
}

.legal-section a {
    color: #2a5885;
    text-decoration: none;
    border-bottom: 1px solid #2a5885;
}

.legal-section a:hover {
    border-bottom-color: transparent;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-content {
        padding: 40px 20px 60px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

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

    .intro-text {
        font-size: 21px;
    }

    .content-block h2 {
        font-size: 30px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .legal-content {
        padding: 40px 20px 60px;
    }
}