.blog-post-container {
    font-family: inherit;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.blog-post-container *,
.blog-post-container *::before,
.blog-post-container *::after {
    box-sizing: border-box;
}

.blog-post-container h1 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin: 0 0 24px;
}

.blog-post-container h2 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: #111;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.3;
}

.blog-post-container h3 {
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    color: #222;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.35;
}

.blog-post-container p {
    margin-bottom: 1.2em;
    text-align: justify;
}

.blog-post-container ul,
.blog-post-container ol {
    margin-bottom: 1.2em;
    padding-left: 22px;
}

.blog-post-container ul li,
.blog-post-container ol li {
    margin-bottom: 0.8em;
}

.blog-post-container a {
    color: #0056b3;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-post-container a:hover {
    color: #003d82;
    text-decoration: none;
}

.blog-note {
    background: #f5f8fc;
    border-left: 5px solid #0056b3;
    padding: 18px 22px;
    margin: 28px 0;
    border-radius: 6px;
}

.blog-cta {
    margin: 40px 0 10px;
    padding: 28px;
    background: #0056b3;
    color: #fff;
    border-radius: 8px;
}

.blog-cta h2,
.blog-cta h3,
.blog-cta p {
    color: #fff;
}

.blog-cta h2,
.blog-cta h3 {
    margin-top: 0;
}

.blog-cta a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.blog-post-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-post-container th,
.blog-post-container td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.blog-post-container th {
    background: #f5f5f5;
    font-weight: 700;
}

/* FAQ */

.crd-faq-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 40px !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.crd-faq-container h2 {
    margin-top: 1.5em;
    color: #111;
    font-weight: 700;
}

.crd-faq-accordion {
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
    width: 100% !important;
    box-sizing: border-box !important;
}

.crd-faq-accordion[open] {
    border-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.08);
}

.crd-faq-question {
    padding: 16px 50px 16px 20px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    transition: color 0.2s ease;
    box-sizing: border-box !important;
    display: block;
    width: 100% !important;
}

.crd-faq-question:hover {
    color: #0056b3;
    background-color: #fcfcfc;
}

.crd-faq-question::-webkit-details-marker {
    display: none;
}

.crd-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #888;
    transition: transform 0.3s ease;
}

.crd-faq-accordion[open] .crd-faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: #0056b3;
}

.crd-faq-answer {
    padding: 12px 20px 16px 20px;
    color: #555;
    background-color: #fff;
    margin: 0;
    text-align: justify;
    border-top: 1px solid #f5f5f5;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Mobile */

@media (max-width: 768px) {
    .blog-post-container p,
    .crd-faq-answer {
        text-align: left;
    }

    .blog-note,
    .blog-cta {
        padding: 18px;
    }

    .crd-faq-question {
        padding: 15px 45px 15px 16px;
    }
}