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

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

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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 30px;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e5e5e0;
    overflow: hidden;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.page-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

.story-section {
    margin-bottom: 60px;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-section h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #2a2a2a;
}

.story-section ul,
.story-section ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.story-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.inline-image-left {
    float: left;
    width: 48%;
    margin: 0 30px 30px 0;
    background-color: #e5e5e0;
}

.inline-image-right {
    float: right;
    width: 48%;
    margin: 0 0 30px 30px;
    background-color: #e5e5e0;
}

.inline-image-center {
    width: 100%;
    margin: 40px 0;
    background-color: #e5e5e0;
}

.inline-image-left img,
.inline-image-right img,
.inline-image-center img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.highlight-box {
    background-color: #f5f5f0;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2563eb;
}

.highlight-box p {
    margin-bottom: 15px;
    font-size: 17px;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 21px;
}

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

blockquote.testimonial {
    background-color: #fafaf8;
    padding: 30px 40px;
    margin: 35px 0;
    border-left: 3px solid #ccc;
    font-style: italic;
}

blockquote.testimonial p {
    font-size: 17px;
    margin-bottom: 15px;
}

blockquote.testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.citation {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.citation:hover {
    text-decoration: underline;
}

.services-inline {
    margin: 50px 0;
}

.service-card {
    background-color: #fff;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

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

.cta-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.cta-btn:hover {
    background-color: #1d4ed8;
}

.cta-btn-secondary {
    display: inline-block;
    background-color: #f0f0ed;
    color: #2a2a2a;
    padding: 14px 32px;
    text-decoration: none;
    border: 1px solid #d0d0cd;
    cursor: pointer;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.cta-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.form-section {
    background-color: #fff;
    padding: 45px;
    margin: 60px 0;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section > p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fafaf8;
    font-family: Georgia, serif;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f0f0ed;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #2563eb;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
    align-self: flex-start;
    margin-top: 10px;
}

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

.editorial-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    background-color: #fff9e6;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 3px solid #f59e0b;
}

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

.references {
    margin-bottom: 40px;
}

.references h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.references ol {
    padding-left: 25px;
}

.references li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.references a {
    color: #2563eb;
    text-decoration: none;
}

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

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

.footer-nav a:hover {
    color: #2563eb;
}

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

.footer-copy {
    font-size: 13px;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2563eb;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.services-detailed {
    margin: 50px 0;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.service-image {
    flex: 0 0 45%;
    background-color: #e5e5e0;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-top: 0;
    font-size: 28px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
    line-height: 1.3;
}

.contact-info-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
    font-style: italic;
}

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

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-section {
    padding: 60px 0;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
}

.next-steps {
    background-color: #f5f5f0;
    padding: 30px;
    margin: 40px 0;
}

.next-steps h2 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.legal-page .story-section h2 {
    margin-top: 40px;
}

.legal-page .story-section h3 {
    margin-top: 25px;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .editorial-container {
        padding: 30px 20px;
    }

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

    .hero-intro {
        font-size: 18px;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-info-wrapper {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
    }

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

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

    .cta-btn,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}