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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    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: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.hero-editorial {
    margin: 40px 0 60px;
}

.hero-image-wrapper {
    margin-bottom: 30px;
    background-color: #f1f3f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-content-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.intro-lead {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.6;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #2d3748;
}

.image-inline {
    margin: 30px 0;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

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

.insight-box {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

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

.insight-box p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

.citation {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

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

.cta-inline {
    background: #f1f5f9;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    margin: 40px 0;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a202c;
}

.cta-inline p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    background: #007bff;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

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

.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a202c;
}

.section-header-centered p {
    font-size: 17px;
    color: #4a5568;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.service-image {
    background-color: #f1f3f5;
}

.service-image img {
    width: 100%;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a202c;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 16px;
}

.btn-select {
    background: #007bff;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #0056b3;
}

.form-section {
    margin: 80px 0;
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-narrow h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a202c;
}

.form-container-narrow > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.trust-section {
    margin: 60px 0;
    padding: 30px;
    background: #fff3cd;
    border-radius: 4px;
}

.disclaimer {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #cbd5e0;
}

.footer-section a {
    color: #90cdf4;
    text-decoration: none;
    transition: color 0.3s;
}

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

.reference-item {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

.btn-reject {
    background: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4a5568;
}

.contact-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-header p {
    font-size: 17px;
    color: #4a5568;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-detail {
    margin-bottom: 16px;
}

.contact-detail strong {
    display: block;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

.about-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-header {
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a202c;
}

.about-image {
    margin: 40px 0;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
}

.about-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.services-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.services-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a202c;
}

.services-header p {
    font-size: 17px;
    color: #4a5568;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 30px;
}

.service-item h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-item p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-container .highlight {
    font-weight: 600;
    color: #007bff;
}

.thanks-container .btn-primary {
    margin-top: 30px;
}

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

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

    .text-block h2 {
        font-size: 26px;
    }

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

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