/* style/blog-article-8.css */

.page-blog-article-8 {
    font-family: 'Arial', sans-serif;
    color: #0A2239; /* Dark blue-black for main text */
    background-color: #F5F5DC; /* Light beige for comfortable reading */
    line-height: 1.6;
    padding: 20px 0;
}

.page-blog-article-8__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.page-blog-article-8__header {
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-article-8__title {
    font-size: 2.5em; /* H1 */
    color: #0A2239;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-blog-article-8__meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

.page-blog-article-8__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
}

.page-blog-article-8__content p {
    font-size: 1.1em; /* 16-18px */
    margin-bottom: 1.5em;
    color: #333333; /* Ensuring high contrast */
}

.page-blog-article-8__content strong {
    color: #0A2239;
}

.page-blog-article-8__subtitle {
    font-size: 2em; /* H2 */
    color: #0A2239;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-blog-article-8__sub-heading {
    font-size: 1.5em; /* H3 */
    color: #0A2239;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-article-8__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-blog-article-8__call-to-action {
    text-align: center;
    margin: 50px 0;
}

.page-blog-article-8__button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color */
    color: #0A2239; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-blog-article-8__button:hover {
    background-color: #FFC400;
    transform: translateY(-2px);
}

.page-blog-article-8__faq {
    margin-top: 40px;
    border-top: 1px dashed #ccc;
    padding-top: 20px;
}

.page-blog-article-8__faq-item {
    margin-bottom: 25px;
}

.page-blog-article-8__faq-question {
    font-size: 1.25em; /* H4 */
    color: #0A2239;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-blog-article-8__faq-answer {
    font-size: 1em;
    color: #333333;
    line-height: 1.7;
    padding-left: 20px;
}

.page-blog-article-8__footer-nav {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-blog-article-8__back-link {
    color: #0A2239;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-blog-article-8__back-link:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-article-8__title {
        font-size: 2em;
    }

    .page-blog-article-8__subtitle {
        font-size: 1.8em;
    }

    .page-blog-article-8__sub-heading {
        font-size: 1.3em;
    }

    .page-blog-article-8__content p {
        font-size: 1em;
    }

    .page-blog-article-8__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-blog-article-8__container {
        padding: 15px;
    }

    .page-blog-article-8__title {
        font-size: 1.8em;
    }

    .page-blog-article-8__subtitle {
        font-size: 1.5em;
    }

    .page-blog-article-8__sub-heading {
        font-size: 1.2em;
    }

    .page-blog-article-8__meta {
        font-size: 0.8em;
    }

    .page-blog-article-8__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}