* {
    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: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    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: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

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

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

.header-image {
    height: 480px;
    background-size: cover;
    background-position: center;
    background-color: #3a3a3a;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.header-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    width: 100%;
    padding: 60px 30px 40px;
    color: #fff;
}

.header-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 400;
}

.subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.content-column {
    padding: 0 30px 60px;
}

.intro-section {
    margin-bottom: 45px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-section p,
.problem-section p,
.insight-section p,
.trust-section p,
.cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

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

.cta-link {
    color: #2c5f8d;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 2px solid #2c5f8d;
    padding-bottom: 3px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #1a3a54;
    border-bottom-color: #1a3a54;
    transform: translateX(5px);
}

.content-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.problem-section,
.insight-section,
.trust-section,
.cta-section {
    margin-bottom: 50px;
}

.problem-section h2,
.insight-section h2,
.trust-section h2,
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

blockquote {
    margin: 35px 0;
    padding: 25px 30px;
    background-color: #f7f7f7;
    border-left: 4px solid #2c5f8d;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: #666;
}

.service-card {
    margin: 30px 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-card p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 26px;
    color: #2c5f8d;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-select-btn {
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

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

.testimonial-inline {
    margin: 35px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 3px solid #888;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 12px;
    color: #2a2a2a;
}

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

.editorial-form {
    margin-top: 35px;
    background-color: #fff;
    padding: 35px;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.submit-btn {
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
    font-weight: 500;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid #e0e0e0;
}

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

.main-footer {
    background-color: #2a2a2a;
    color: #bbb;
    padding: 50px 30px 30px;
    margin-top: 70px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #2c5f8d;
    color: #fff;
}

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

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

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

.thanks-container {
    max-width: 720px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.thanks-container .highlight {
    background-color: #f7f7f7;
    padding: 25px;
    margin: 30px 0;
    border-left: 3px solid #2c5f8d;
}

.thanks-container a {
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 500;
}

.thanks-container a:hover {
    text-decoration: underline;
}

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

    .header-overlay h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}