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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.3px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

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

.editorial-article {
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 2px;
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-header h1 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-lead {
    font-size: 20px;
    color: #5a5a5a;
    font-style: italic;
    line-height: 1.5;
}

.article-image {
    margin: 35px 0 40px;
    width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.article-section {
    margin-bottom: 35px;
}

.article-section h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.article-section h3 {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #3a3a3a;
}

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

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

.inline-cta {
    margin: 30px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    color: #2455a4;
    text-decoration: underline;
    font-size: 17px;
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: #1a3d7a;
}

.cta-link-alt {
    display: inline-block;
    color: #555;
    text-decoration: underline;
    font-size: 17px;
    transition: color 0.2s ease;
}

.cta-link-alt:hover {
    color: #2c2c2c;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.inline-cta.secondary {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 3px;
}

.inline-cta.primary {
    background-color: #fff;
    padding: 30px;
    border: 2px solid #e8e8e8;
    border-radius: 3px;
}

.highlight-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #2c2c2c;
    margin: 35px 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.service-card {
    padding: 25px;
    background-color: #fafafa;
    border-radius: 3px;
    border: 1px solid #e8e8e8;
}

.service-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

.editorial-form {
    margin: 30px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

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

.submit-button {
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

.disclaimer-section {
    border-top: 1px solid #e8e8e8;
    padding-top: 30px;
    margin-top: 40px;
}

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

.services-detailed {
    margin-top: 35px;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.service-header h2 {
    margin-bottom: 0;
    flex: 1;
}

.service-price {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 700;
    white-space: nowrap;
}

.service-content {
    margin-top: 15px;
}

.service-features {
    list-style: none;
    margin-top: 18px;
    padding-left: 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a4a4a;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2c2c2c;
}

.content-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.content-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 17px;
    color: #3a3a3a;
}

.content-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2c2c2c;
}

.contact-info-block {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.contact-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-detail {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.thanks-message {
    margin-bottom: 35px;
}

.thanks-next-steps,
.thanks-actions,
.thanks-continue {
    margin-top: 35px;
    text-align: left;
}

.thanks-next-steps h2,
.thanks-actions h2 {
    text-align: center;
    margin-bottom: 20px;
}

.legal-page .article-section {
    margin-bottom: 40px;
}

.legal-page h2 {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-page a {
    color: #2455a4;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1a3d7a;
}

.cookie-table {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 3px;
    margin: 15px 0;
}

.cookie-table h3 {
    margin-top: 0;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-copy {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid #2c2c2c;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.cookie-accept {
    background-color: #fff;
    color: #1a1a1a;
}

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

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

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

@media (max-width: 768px) {
    .editorial-article {
        padding: 30px 25px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-section h2 {
        font-size: 22px;
    }

    .article-section p {
        font-size: 16px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

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

    .service-price {
        font-size: 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

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

    .editorial-article {
        padding: 25px 20px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-lead {
        font-size: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
