:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --background-light: #F4F7FB;
    --text-main: #1F2D3D;
    --card-bg: #FFFFFF;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-blog-f1686-ban-ca-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for light background body */
    line-height: 1.6;
    background-color: var(--background-light); /* Body background is light, so text is dark */
}

.page-blog-f1686-ban-ca-guide__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-f1686-ban-ca-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-light); /* Ensure hero has a background */
}

.page-blog-f1686-ban-ca-guide__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-f1686-ban-ca-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-blog-f1686-ban-ca-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-blog-f1686-ban-ca-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-f1686-ban-ca-guide__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-f1686-ban-ca-guide__lead-text {
    font-size: 18px;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-blog-f1686-ban-ca-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-f1686-ban-ca-guide__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-f1686-ban-ca-guide__cta-button--secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
    margin-left: 20px;
}

.page-blog-f1686-ban-ca-guide__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-f1686-ban-ca-guide__content-section {
    padding: 60px 0;
}

.page-blog-f1686-ban-ca-guide__light-bg {
    background-color: var(--background-light);
    color: var(--text-main);
}

.page-blog-f1686-ban-ca-guide__dark-bg {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-blog-f1686-ban-ca-guide__dark-bg .page-blog-f1686-ban-ca-guide__section-title,
.page-blog-f1686-ban-ca-guide__dark-bg .page-blog-f1686-ban-ca-guide__subsection-title {
    color: #ffffff;
}

.page-blog-f1686-ban-ca-guide__section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-f1686-ban-ca-guide__subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-f1686-ban-ca-guide p {
    margin-bottom: 15px;
    font-size: 16px;
}

.page-blog-f1686-ban-ca-guide__list,
.page-blog-f1686-ban-ca-guide__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-blog-f1686-ban-ca-guide__ordered-list {
    list-style-type: decimal;
}

.page-blog-f1686-ban-ca-guide__list li,
.page-blog-f1686-ban-ca-guide__ordered-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

.page-blog-f1686-ban-ca-guide__image-full {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-f1686-ban-ca-guide__link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-f1686-ban-ca-guide__link:hover {
    color: var(--secondary-color);
}

.page-blog-f1686-ban-ca-guide__post-meta {
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-top: 40px;
}

.page-blog-f1686-ban-ca-guide__cta-banner {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-blog-f1686-ban-ca-guide__cta-banner .page-blog-f1686-ban-ca-guide__section-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.page-blog-f1686-ban-ca-guide__cta-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}