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

/* Base styles for the blog article */
.page-blog-article-5 {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding: 20px 0;
}

.page-blog-article-5-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header & Meta */
.page-blog-article-5-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-blog-article-5-back-to-blog {
    display: inline-block;
    margin-bottom: 20px;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-article-5-back-to-blog:hover {
    color: #FFCC00;
}

.page-blog-article-5-title {
    font-size: 2.5em; /* H1 */
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-article-5-meta {
    font-size: 0.95em;
    color: #6c757d;
    margin-bottom: 20px;
}

.page-blog-article-5-hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.page-blog-article-5-content-section p {
    font-size: 1.1em; /* 16-18px */
    margin-bottom: 1.5em; /* Paragraph spacing */
    line-height: 1.7; /* Line height */
    color: #343a40;
}

.page-blog-article-5-heading {
    font-size: 2em; /* H2 */
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00;
    padding-bottom: 10px;
}

.page-blog-article-5-sub-heading {
    font-size: 1.5em; /* H3 */
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-article-5-content-section h4 {
    font-size: 1.25em; /* H4 */
    color: #003366;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog-article-5-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em auto; /* Centered with vertical spacing */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-article-5-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    color: #343a40;
}

.page-blog-article-5-list li {
    margin-bottom: 0.8em;
    font-size: 1.1em;
}

.page-blog-article-5-list.page-blog-article-5-ordered-list {
    list-style-type: decimal;
}

.page-blog-article-5-highlight {
    font-weight: bold;
    color: #003366;
}

/* Call to Action Boxes */
.page-blog-article-5-cta-box {
    background-color: #e0f2f7; /* Light blue */
    border-left: 5px solid #003366;
    padding: 25px;
    margin: 40px 0;
    border-radius: 5px;
    text-align: center;
}

.page-blog-article-5-cta-box-secondary {
    background-color: #fff3e0; /* Light orange */
    border-left: 5px solid #FFCC00;
}

.page-blog-article-5-cta-box p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #003366;
}

/* Buttons */
.page-blog-article-5-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-blog-article-5-button-primary {
    background-color: #003366;
    color: #ffffff;
    border: 2px solid #003366;
}

.page-blog-article-5-button-primary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.page-blog-article-5-button-secondary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-blog-article-5-button-secondary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-blog-article-5-button-large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Footer */
.page-blog-article-5-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-blog-article-5-footer p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.page-blog-article-5-return-link {
    margin-top: 30px;
    font-size: 1em;
}

.page-blog-article-5-return-link a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-article-5-return-link a:hover {
    color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-article-5-container {
        padding: 20px;
    }

    .page-blog-article-5-title {
        font-size: 2em;
    }

    .page-blog-article-5-heading {
        font-size: 1.8em;
    }

    .page-blog-article-5-sub-heading {
        font-size: 1.3em;
    }

    .page-blog-article-5-content-section p {
        font-size: 1em;
    }

    .page-blog-article-5-button {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 15px;
    }
}

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

    .page-blog-article-5-title {
        font-size: 1.8em;
    }

    .page-blog-article-5-heading {
        font-size: 1.6em;
    }

    .page-blog-article-5-sub-heading {
        font-size: 1.2em;
    }

    .page-blog-article-5-cta-box p {
        font-size: 1em;
    }
}