* {
    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;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

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

.article-header h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.article-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.article-image {
    margin: 48px 0;
    width: 100%;
    background-color: #e8e8e8;
}

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

.article-body {
    margin-top: 48px;
}

.content-section {
    margin-bottom: 56px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 16px;
    color: #1a1a1a;
}

.inline-image {
    margin: 36px 0;
    background-color: #e8e8e8;
}

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

.inline-cta {
    margin: 32px 0;
    padding: 24px;
    background-color: #f5f8fa;
    border-left: 4px solid #0066cc;
}

.cta-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #004999;
    text-decoration: underline;
}

.alt-bg {
    background-color: #f9f9f9;
    padding: 40px 32px;
    margin-left: -32px;
    margin-right: -32px;
}

.article-quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.5;
    color: #1a1a1a;
    border-left: 4px solid #333;
    padding-left: 28px;
    margin: 40px 0;
}

.highlight-section {
    background-color: #fff;
    padding: 48px 0;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 32px;
    transition: box-shadow 0.3s;
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-select-btn {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.service-select-btn:hover {
    background-color: #004999;
}

.testimonials-section {
    background-color: #f5f5f5;
    padding: 40px 32px;
    margin-left: -32px;
    margin-right: -32px;
}

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #ffffff;
    border-left: 3px solid #0066cc;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.form-section {
    margin-top: 64px;
}

.contact-form {
    margin-top: 32px;
    max-width: 560px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin-top: 64px;
    padding: 28px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 48px 24px 24px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

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

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

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

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

    .nav-links {
        gap: 16px;
    }

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

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

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

    .alt-bg,
    .testimonials-section {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}