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

:root {
    --primary-color: #2c5282;
    --secondary-color: #48bb78;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --background-light: #f7fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    max-width: 800px;
    margin: 60px auto 80px;
    padding: 0 24px;
}

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

.hero-text-center h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    margin-top: 40px;
}

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.intro-text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.inline-cta-box {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.inline-cta-box p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #2c4a6e;
}

.image-inline {
    margin: 48px 0;
}

.image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--primary-color);
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-light);
}

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

.service-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--text-dark);
}

.service-item p {
    margin-bottom: 16px;
    font-size: 17px;
}

.price-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

.inline-cta-text {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 6px;
    margin: 40px 0;
}

.inline-cta-text p {
    margin-bottom: 0;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.process-steps {
    margin: 48px 0;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
}

.step p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-light);
}

.testimonial-inline {
    background-color: var(--background-light);
    padding: 32px;
    border-left: 4px solid var(--secondary-color);
    margin: 40px 0;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.cta-box-prominent {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 48px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 56px 0;
}

.cta-box-prominent h3 {
    color: var(--white);
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
}

.cta-box-prominent p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 28px;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
}

.service-selection {
    margin: 56px 0;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.service-selection h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #2c4a6e;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 24px;
    border-radius: 6px;
    margin-top: 56px;
    border-left: 4px solid #ffc107;
}

.disclaimer-section h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    color: #856404;
}

.disclaimer-section p {
    margin-bottom: 0;
    font-size: 15px;
    color: #856404;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 48px 24px 24px;
    margin-top: 80px;
}

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

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

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

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    max-width: 800px;
    margin: 60px auto 48px;
    padding: 0 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.header-intro {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-detail {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--border-color);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

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

.service-price {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 20px;
}

.service-image {
    margin: 24px 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-description h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-description ul {
    margin: 16px 0 16px 24px;
}

.service-description ul li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.service-cta:hover {
    background-color: #2c4a6e;
}

.pricing-info {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
}

.pricing-info h2 {
    margin-top: 0;
}

.contact-intro {
    margin-bottom: 48px;
}

.contact-information {
    margin: 48px 0;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 0;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}

.contact-notice {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
}

.contact-notice h2 {
    margin-top: 0;
}

.contact-notice ul {
    margin: 16px 0 16px 24px;
}

.contact-notice ul li {
    margin-bottom: 8px;
    font-size: 17px;
}

.data-protection-notice {
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    margin: 40px 0;
}

.data-protection-notice h2 {
    margin-top: 0;
}

.thanks-page {
    text-align: center;
}

.thanks-icon {
    margin: 40px 0 32px;
}

.thanks-message {
    text-align: left;
}

.service-confirmation {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.next-steps {
    margin: 40px 0;
}

.next-steps .step {
    align-items: flex-start;
}

.next-steps .step-content h3 {
    margin-top: 0;
}

.info-box {
    background-color: #e6f7ff;
    border-left: 4px solid #1890ff;
    padding: 24px;
    margin: 32px 0;
    border-radius: 6px;
}

.info-box p {
    margin-bottom: 12px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.thanks-link {
    display: inline-block;
    background-color: var(--background-light);
    color: var(--primary-color);
    padding: 16px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    text-align: center;
}

.thanks-link:hover {
    background-color: #e2e8f0;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 17px;
}

.legal-footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-footer p {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

    .content-narrow h2 {
        font-size: 26px;
    }

    .content-narrow p {
        font-size: 17px;
    }

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

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

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

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

    .step {
        flex-direction: column;
    }
}