*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8fafc;
    color: #1e293b;
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.ht-header {
    background: #fff;
    border-bottom: 3px double #1d4ed8;
    padding: 12px 0 8px;
    text-align: center;
}
.ht-header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.ht-sponsored-bar {
    background: #1d4ed8;
    color: #fff;
    font-family: 'Source Serif 4', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 0;
    text-align: center;
}
.ht-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 8px 0 4px;
}
.ht-tagline {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    font-style: italic;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.ht-nav {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ht-nav a {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    text-decoration: none;
}
.ht-nav a:hover { color: #1d4ed8; }

/* === BADGE === */
.ht-badge-bar {
    max-width: 800px;
    margin: 20px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ht-badge {
    background: #1d4ed8;
    color: #fff;
    font-family: 'Source Serif 4', serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}
.ht-category {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === ARTICLE CONTAINER === */
.ht-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

/* === META === */
.ht-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.ht-meta-author {
    font-family: 'Source Serif 4', serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.ht-meta-date {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: #888;
}
.ht-meta-reading {
    font-family: 'Source Serif 4', serif;
    font-size: 13px;
    color: #888;
    margin-left: auto;
}

/* === SECTIONS === */
.ht-sections h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    margin: 0 0 16px;
}
.ht-sections h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    font-style: italic;
    letter-spacing: 0px;
    color: #1a1a1a;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1d4ed8;
}
.ht-sections h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #333;
    margin: 32px 0 12px;
}
.ht-sections p {
    margin-bottom: 20px;
    color: #2a2a2a;
}
.ht-sections blockquote {
    border-left: 4px solid #1d4ed8;
    margin: 28px 0;
    padding: 16px 24px;
    background: rgba(139,0,0,0.04);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}
.ht-sections img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 2px;
}
.ht-sections ul, .ht-sections ol {
    margin: 16px 0 20px 24px;
}
.ht-sections li {
    margin-bottom: 8px;
}

/* === NEW ELEMENTS FROM INDEX === */
.highlight-box {
    background-color: #fffbeb;
    border-left: 5px solid #f59e0b;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 19px;
    color: #1a1a1a;
    border-radius: 0 6px 6px 0;
    line-height: 1.6;
}
.proof-box {
    background-color: #f0f9ff;
    border: 2px dashed #0284c7;
    padding: 24px;
    margin: 32px 0;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
    color: #0f172a;
}.cta-blue {
    display: block;
    width: fit-content;
    margin: 36px auto;
    background: #1d4ed8;
    color: #fff !important;
    font-family: 'Source Serif 4', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
    transition: background 0.2s, transform 0.2s;
}
.cta-blue:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* === CTA BLOCK === */
.ht-cta-block {
    border: 3px double #1d4ed8;
    padding: 32px;
    margin: 40px 0;
    text-align: center;
    background: #fff;
}
.ht-cta-block p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}
.ht-cta-btn {
    display: inline-block;
    background: #1d4ed8;
    color: #fff;
    font-family: 'Source Serif 4', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.ht-cta-btn:hover { opacity: 0.85; }

/* === FOOTER === */
.ht-footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 32px 20px;
    font-family: 'Source Serif 4', serif;
    font-size: 12px;
    line-height: 1.8;
}
.ht-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.ht-footer a {
    color: #ccc;
    text-decoration: none;
}
.ht-footer a:hover { color: #fff; }
.ht-footer-links {
    margin: 12px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    body { font-size: 16px; line-height: 1.7; }
    .ht-header-inner { padding: 0 16px; }
    .ht-logo { font-size: 28px; letter-spacing: -0.5px; }
    .ht-tagline { font-size: 12px; }
    .ht-nav { gap: 12px; flex-wrap: wrap; justify-content: center; padding: 6px 12px; }
    .ht-nav a { font-size: 11px; letter-spacing: 1px; }
    .ht-badge-bar { padding: 0 16px; margin: 14px auto 0; }
    .ht-article { padding: 16px 16px 48px; }
    .ht-sections h1 { font-size: 24px; letter-spacing: -0.2px; }
    .ht-sections h2 { font-size: 20px; line-height: 1.3; margin: 28px 0 12px; letter-spacing: 0px; }
    .ht-sections h3 { font-size: 18px; }
    .ht-sections p { font-size: 16px; margin-bottom: 16px; }
    .ht-meta { gap: 8px; padding: 12px 0; margin-bottom: 20px; }
    .ht-meta-reading { margin-left: 0; }
    .ht-cta-block { padding: 24px 16px; margin: 32px 0; }
    .ht-cta-block h3 { font-size: 20px; }
    .ht-cta-btn { padding: 14px 28px; font-size: 15px; width: 100%; text-align: center; display: block; }
    blockquote { margin: 20px 0; padding: 12px 16px; font-size: 17px; }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .ht-logo { font-size: 22px; }
    .ht-tagline { font-size: 11px; }
    .ht-nav { gap: 8px; padding: 5px 8px; }
    .ht-nav a { font-size: 10px; }
    .ht-badge-bar { flex-wrap: wrap; gap: 8px; margin: 10px auto 0; }
    .ht-article { padding: 12px 14px 40px; }
    .ht-sections h1 { font-size: 21px; letter-spacing: 0px; }
    .ht-sections h2 { font-size: 18px; line-height: 1.25; margin: 24px 0 10px; letter-spacing: 0px; }
    .ht-sections h3 { font-size: 17px; }
    .ht-sections p { font-size: 15px; }
    .ht-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
    .ht-cta-block h3 { font-size: 18px; }
    .ht-cta-btn { font-size: 14px; padding: 12px 20px; }
    .cta-blue { width: 100%; box-sizing: border-box; padding: 16px 20px; font-size: 15px; }
    .highlight-box { font-size: 17px; padding: 16px; margin: 20px 0; }
    .proof-box { font-size: 16px; padding: 16px; margin: 24px 0; }
    blockquote { font-size: 15px; padding: 10px 12px; }
}

/* FAQ Specific styles */
.faq { margin-bottom: 16px; }
.faq h3 { font-size: 18px; margin-bottom: 4px; color: #1a1a1a; }

/* Testimonials specific styles */
@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
    .testimonials-grid { grid-template-columns: 1fr !important; }
}