/*
Theme Name: NextGenHub Blog
Theme URI: https://nextgenhub.com
Author: NextGenHub
Author URI: https://nextgenhub.com
Description: A clean, SEO-optimized research blog theme built around Google's E-E-A-T principles.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: nextgenhub
*/

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.8;
    color: #000;
    background: #f9f8f5;
}

a { color: #000; text-decoration: underline; }
a:hover { color: #1a6fa0; }
img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header / Nav ── */
#site-header {
    background: #d6eaf8;
    border-bottom: 2px solid #85b8e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

/* ── Header Logo with Tagline ── */
.site-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-logo-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.site-logo-tagline {
    font-family: sans-serif;
    font-size: 11px;
    color: #000;
    font-style: italic;
    line-height: 1.2;
}

.site-logo-wrap:hover .site-logo-name { color: #1a6fa0; }

#primary-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

#primary-nav ul li a {
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item a { color: #1a6fa0; }

/* Hamburger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
}

/* ── Hero / Featured Banner ── */
.hero-banner {
    background: #d6eaf8;
    border-bottom: 3px solid #85b8e0;
    padding: 52px 24px 44px;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background: #85b8e0;
    color: #000;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.3;
    color: #000;
    max-width: 640px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: sans-serif;
    font-size: 16px;
    color: #000;
    font-style: italic;
    margin-bottom: 16px;
}

.hero-meta {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-meta .sep { color: #5a9ec8; }

.eeat-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.eeat-badge {
    font-family: sans-serif;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    color: #000;
}

.badge-experience { background: #e8f4fd; }
.badge-expertise  { background: #e8f5e9; }
.badge-authority  { background: #fff3e0; }
.badge-trust      { background: #fce4ec; }

/* ── Main Layout ── */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    max-width: 1140px;
    margin: 40px auto;
    padding: 0 24px;
}

/* ── Article Cards ── */
.article-list { display: flex; flex-direction: column; gap: 20px; }

.article-card {
    background: #fff;
    border: 0.5px solid #e0ddd6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.article-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }

.article-thumb {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #d6eaf8;
}

.article-body { flex: 1; }

.article-cat {
    font-family: sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
    text-decoration: none;
    display: inline-block;
}

.article-card h2 {
    font-size: 17px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 8px;
}

.article-card h2 a { text-decoration: none; color: #000; }
.article-card h2 a:hover { color: #1a6fa0; }

.article-excerpt {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-meta-row {
    font-family: sans-serif;
    font-size: 12px;
    color: #333;
}

/* ── Pagination ── */
.pagination {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    font-family: sans-serif;
    font-size: 14px;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border: 0.5px solid #e0ddd6;
    border-radius: 6px;
    color: #000;
    text-decoration: none;
    background: #fff;
}

.pagination .current { background: #d6eaf8; font-weight: 600; }
.pagination a:hover { background: #d6eaf8; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.widget-box {
    background: #fff;
    border: 0.5px solid #e0ddd6;
    border-radius: 8px;
    padding: 18px;
}

.widget-box h3 {
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 0.5px solid #e0ddd6;
}

/* Search */
.search-form { display: flex; gap: 8px; }
.search-form input {
    flex: 1;
    padding: 8px 12px;
    border: 0.5px solid #c0cdd8;
    border-radius: 6px;
    font-size: 13px;
    font-family: sans-serif;
}
.search-form button {
    padding: 8px 14px;
    background: #85b8e0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: sans-serif;
    color: #000;
    font-weight: 600;
}
.search-form button:hover { background: #5fa3d0; }

/* Topic pills */
.topic-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.topic-pill {
    display: inline-block;
    background: #d6eaf8;
    color: #000;
    font-family: sans-serif;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
}
.topic-pill:hover { background: #85b8e0; }

/* Recent posts */
.recent-list { display: flex; flex-direction: column; gap: 0; }
.recent-item {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    padding: 8px 0;
    border-bottom: 0.5px solid #f0ede6;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}
.recent-item:last-child { border-bottom: none; }
.recent-item:hover { color: #1a6fa0; }
.recent-date { font-size: 11px; color: #333; margin-top: 2px; }

/* About widget */
.about-text {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.7;
}

/* ── Single Post ── */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    max-width: 1140px;
    margin: 40px auto;
    padding: 0 24px;
}

.post-header { margin-bottom: 28px; }

.post-category {
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.post-title {
    font-size: 30px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 14px;
}

.post-meta {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 0;
    border-top: 0.5px solid #e0ddd6;
    border-bottom: 0.5px solid #e0ddd6;
    margin-bottom: 28px;
}

.post-featured-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 28px;
    max-height: 420px;
    object-fit: cover;
}

/* Author box */
.author-box {
    background: #d6eaf8;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 36px 0;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #85b8e0;
    flex-shrink: 0;
    object-fit: cover;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.author-bio {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.6;
}

/* Post content typography */
.post-content { color: #000; }
.post-content h2 { font-size: 22px; margin: 32px 0 14px; color: #000; }
.post-content h3 { font-size: 18px; margin: 24px 0 10px; color: #000; }
.post-content p  { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 6px; }
.post-content blockquote {
    border-left: 3px solid #85b8e0;
    padding: 12px 20px;
    margin: 24px 0;
    background: #d6eaf8;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #000;
}
.post-content a { color: #1a6fa0; }
.post-content code {
    background: #f0f4f8;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
}

/* ── Footer ── */
#site-footer {
    background: #d6eaf8;
    border-top: 2px solid #85b8e0;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 24px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #000;
    margin-bottom: 14px;
}

.footer-col p, .footer-col a {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-col a:hover { color: #1a6fa0; }



/* ── Page: About / Static ── */
.page-layout {
    max-width: 800px;
    margin: 48px auto;
    padding: 0 24px;
}

.page-title {
    font-size: 30px;
    color: #000;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #85b8e0;
}

.page-content { color: #000; }
.page-content h2 { font-size: 22px; margin: 28px 0 12px; }
.page-content p  { margin-bottom: 18px; font-family: sans-serif; font-size: 15px; line-height: 1.8; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .main-layout, .single-layout { grid-template-columns: 1fr; }
    .sidebar { order: -1; }
    .hero-title { font-size: 22px; }
    .footer-inner { grid-template-columns: 1fr; }
    #primary-nav { display: none; }
    #primary-nav.open { display: block; }
    #primary-nav ul { flex-direction: column; gap: 0; padding: 12px 0; }
    #primary-nav ul li a { display: block; padding: 10px 24px; }
    .nav-toggle { display: flex; }
    .article-card { flex-direction: column; }
    .article-thumb { width: 100%; height: 180px; }
}

/* ── Contact Page ── */
.contact-intro {
    background: #d6eaf8;
    border-left: 4px solid #85b8e0;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 36px;
    font-family: sans-serif;
    font-size: 15px;
    color: #000;
}

.contact-wrapper {
    max-width: 620px;
}

.contact-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
}

.contact-error {
    background: #fce4ec;
    border: 1px solid #f48fb1;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.required { color: #e53935; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #c0cdd8;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #85b8e0;
    box-shadow: 0 0 0 3px rgba(133, 184, 224, 0.2);
}

.form-group select { cursor: pointer; appearance: auto; }

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-submit {
    display: inline-block;
    background: #85b8e0;
    color: #000;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    align-self: flex-start;
    letter-spacing: 0.02em;
}

.contact-submit:hover {
    background: #5fa3d0;
    transform: translateY(-1px);
}

.contact-submit:active { transform: translateY(0); }

@media (max-width: 768px) {
    .contact-wrapper { max-width: 100%; }
    .contact-submit { width: 100%; text-align: center; }
}

/* ══ HERO SECTION ══ */
.hero-banner {
    background: #d6eaf8;
    border-bottom: 3px solid #85b8e0;
    padding: 60px 24px;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

/* Left */
.hero-tag {
    display: inline-block;
    background: #85b8e0;
    color: #000;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.25;
    color: #000;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-subtitle {
    font-family: sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-cta-btn {
    background: #000;
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.02em;
}

.hero-cta-btn:hover { background: #1a6fa0; transform: translateY(-2px); }

/* Right — Card */
.hero-right { display: flex; justify-content: center; }

.hero-card {
    background: #fff;
    border: 1.5px solid #85b8e0;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(133,184,224,0.18);
    width: 100%;
    max-width: 360px;
}

.hero-card-badge {
    display: inline-block;
    background: #85b8e0;
    color: #000;
    font-family: sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-card-icon { font-size: 44px; margin-bottom: 12px; }

.hero-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.hero-card-desc {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 18px;
}

.hero-card-list {
    list-style: none;
    text-align: left;
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.9;
    margin-bottom: 22px;
    padding: 0;
}

.hero-card-btn {
    width: 100%;
    background: #85b8e0;
    color: #000;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.hero-card-btn:hover { background: #5fa3d0; transform: translateY(-1px); }

/* Section heading */
.section-heading {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #85b8e0;
    font-family: sans-serif;
}

/* ══ NEWSLETTER MODAL ══ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    line-height: 1;
}

.modal-close:hover { color: #1a6fa0; }

.modal-icon { font-size: 40px; text-align: center; margin-bottom: 10px; }

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-family: sans-serif;
    font-size: 14px;
    color: #000;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-privacy {
    font-family: sans-serif;
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 12px;
}

.newsletter-form { display: flex; flex-direction: column; gap: 16px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-title { font-size: 26px; }
}

@media (max-width: 600px) {
    .modal-box { padding: 28px 20px; }
}

/* ══ TOPICS PAGE ══ */
.topics-intro {
    font-family: sans-serif;
    font-size: 16px;
    color: #000;
    margin-bottom: 36px;
    line-height: 1.7;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.topic-card {
    background: #fff;
    border: 1.5px solid #e0ddd6;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.topic-card:hover {
    box-shadow: 0 6px 24px rgba(133,184,224,0.25);
    transform: translateY(-4px);
    border-color: #85b8e0;
    text-decoration: none;
    color: #000;
}

.topic-card-icon { font-size: 40px; }

.topic-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.topic-card-desc {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.7;
    flex: 1;
}

.topic-card-link {
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a6fa0;
    margin-top: 6px;
}

@media (max-width: 900px) { .topics-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .topics-grid { grid-template-columns: 1fr; } }

/* ══ ABOUT PAGE ══ */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1.5px solid #e0ddd6;
}

.about-hero-text h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 16px;
}

.about-hero-text p {
    font-family: sans-serif;
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-stat-box {
    background: #d6eaf8;
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}

.about-stat-icon { font-size: 28px; margin-bottom: 6px; }

.about-stat-box h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.about-stat-box p {
    font-family: sans-serif;
    font-size: 11px;
    color: #000;
    margin: 0;
}

.about-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1.5px solid #e0ddd6;
}

.about-section h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 16px;
}

.about-section > p {
    font-family: sans-serif;
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.about-pillar {
    background: #f9f8f5;
    border: 1px solid #e0ddd6;
    border-radius: 10px;
    padding: 22px 18px;
}

.about-pillar-icon { font-size: 32px; display: block; margin-bottom: 10px; }

.about-pillar h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.about-pillar p {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.7;
}

.about-mission p {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 14px;
}

.about-quote {
    background: #d6eaf8;
    border-left: 4px solid #85b8e0;
    border-radius: 0 8px 8px 0;
    padding: 18px 24px;
    font-style: italic;
    font-size: 16px;
    color: #000;
    margin: 24px 0 0;
}

.about-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f9f8f5;
    border: 1px solid #e0ddd6;
    border-radius: 10px;
    padding: 18px;
}

.about-trust-item span { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.about-trust-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.about-trust-item p {
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    background: #d6eaf8;
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
}

.about-cta h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 12px;
}

.about-cta p {
    font-family: sans-serif;
    font-size: 15px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
    .about-trust-grid { grid-template-columns: 1fr; }
}


