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

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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e4e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2d3748;
}

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.article-intro {
    font-size: 21px;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
}

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

.article-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 48px;
    color: #1a202c;
}

.article-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2d3748;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 19px;
}

.article-section ul,
.article-section ol {
    margin-bottom: 20px;
    margin-left: 32px;
    font-size: 19px;
}

.article-section li {
    margin-bottom: 12px;
}

.article-image {
    margin: 48px 0;
    background-color: #e2e8f0;
}

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

.inline-image-right {
    float: right;
    width: 48%;
    margin: 8px 0 32px 32px;
    background-color: #e2e8f0;
}

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

.inline-image-left {
    float: left;
    width: 48%;
    margin: 8px 32px 32px 0;
    background-color: #e2e8f0;
}

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

.inline-cta {
    margin: 48px 0;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
    text-align: center;
}

.cta-link {
    font-size: 21px;
    color: #2b6cb0;
    text-decoration: none;
    border-bottom: 2px solid #4299e1;
    transition: border-color 0.2s;
}

.cta-link:hover {
    border-bottom-color: #2c5282;
}

.highlight-box {
    background-color: #edf2f7;
    padding: 32px;
    border-radius: 4px;
    margin: 48px 0;
}

.content-block {
    margin-bottom: 32px;
}

.testimonial-inline {
    background-color: #fffaf0;
    border-left: 4px solid #ed8936;
    padding: 32px;
    margin: 48px 0;
}

.testimonial-inline blockquote {
    font-size: 21px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 17px;
    font-style: normal;
    color: #4a5568;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 16px 0;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.btn-primary {
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
    border: none;
}

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

.contact-form {
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-top: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4299e1;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #2c5282;
}

.disclaimer {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 24px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 48px;
}

.disclaimer p {
    font-size: 15px;
}

.site-footer {
    background-color: #2d3748;
    color: #cbd5e0;
    padding: 48px 20px 24px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    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;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

.service-detail {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}

.service-includes {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 4px;
    margin: 24px 0;
}

.service-includes h3 {
    font-size: 20px;
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 24px 0;
}

.price-note {
    font-size: 17px;
    font-weight: 400;
    color: #4a5568;
}

.service-cta {
    margin-top: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 17px;
}

.note {
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.thanks-header {
    padding: 48px 0;
}

.thanks-content {
    margin-top: 48px;
}

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

.step {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
    border-radius: 4px;
}

.step h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2b6cb0;
}

.service-confirmation {
    background-color: #c6f6d5;
    padding: 16px;
    border-radius: 4px;
    margin-top: 24px;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
}

.principles-list {
    list-style: none;
    margin-left: 0;
}

.principles-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
}

.principles-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4299e1;
    font-weight: 700;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

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

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

    .article-section p,
    .article-section ul,
    .article-section ol {
        font-size: 17px;
    }

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

    .nav-links {
        gap: 16px;
    }

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

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

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