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

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    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-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

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

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

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.story-section p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: #333;
}

.story-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 48px 0 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 32px 0 16px;
    color: #2d2d2d;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-cta {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 16px 0;
    transition: color 0.3s ease;
}

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

.highlight-section {
    background-color: #f8f9fa;
    padding: 40px 36px;
    margin: 48px -36px;
    border-left: 4px solid #2563eb;
}

.services-intro-section {
    margin: 60px 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.98rem;
    margin: 0 24px 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.service-features {
    list-style: none;
    margin: 16px 24px;
    padding: 0;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 24px 24px;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.testimonial {
    border-left: 4px solid #e5e5e5;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #4a4a4a;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.cta-section {
    background-color: #fef3c7;
    padding: 40px 36px;
    margin: 60px -36px;
    border-radius: 6px;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.cta-section a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.cta-section a:hover {
    text-decoration: underline;
}

.form-section {
    background-color: #ffffff;
    padding: 48px 36px;
    margin: 60px -36px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-section > p {
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fef2f2;
    padding: 32px 36px;
    margin: 60px -36px;
    border-left: 4px solid #dc2626;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.references-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e5e5;
}

.references-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    list-style: decimal;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

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

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

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info {
    margin-top: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

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

.contact-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page {
    max-width: 820px;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #4a4a4a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-container {
    text-align: center;
    padding: 80px 30px;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-confirmation {
    font-weight: 600;
    color: #2563eb;
    margin: 24px 0;
}

.email-text {
    font-weight: 600;
    color: #2d2d2d;
}

.back-home-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

.footer {
    background-color: #1a1a1a;
    color: #d1d5db;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px 30px;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d1d5db;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #374151;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

    .story-section h2 {
        font-size: 1.5rem;
    }

    .highlight-section,
    .cta-section,
    .form-section,
    .disclaimer-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 32px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
