/* General styles for the blog page */
.page-blog {
    font-family: 'Arial', sans-serif;
    color: var(--text-main, #F3F8FF); /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css var(--deep-navy) */
    line-height: 1.6;
}

.page-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-blog__section-title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--text-main, #F3F8FF);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.page-blog__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F2C14E, #4FA8FF); /* Gold and Glow */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-blog__sub-title {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--text-main, #F3F8FF);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog p {
    font-size: 16px;
    color: var(--text-secondary, #AFC4E8);
    margin-bottom: 15px;
}

.page-blog a {
    color: var(--auxiliary-color, #1D5FD1); /* Auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog a:hover {
    color: var(--glow-color, #4FA8FF); /* Glow color on hover */
}

/* Buttons */
.page-blog__btn-primary,
.page-blog__btn-secondary,
.page-blog__btn-link,
.page-blog__btn-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-blog__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Custom button gradient */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__btn-primary:hover {
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.page-blog__btn-secondary {
    background: var(--card-bg, #10233F); /* Card BG color */
    color: var(--text-main, #F3F8FF);
    border: 2px solid var(--border-color, #244D84); /* Border color */
}

.page-blog__btn-secondary:hover {
    background: var(--primary-color, #113B7A);
    border-color: var(--glow-color, #4FA8FF);
    transform: translateY(-2px);
}

.page-blog__btn-link,
.page-blog__btn-readmore {
    background: transparent;
    color: var(--glow-color, #4FA8FF);
    border: 1px solid var(--glow-color, #4FA8FF);
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.page-blog__btn-link:hover,
.page-blog__btn-readmore:hover {
    background: var(--glow-color, #4FA8FF);
    color: var(--deep-navy, #08162B); /* Deep Navy for text on hover */
}

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--deep-navy, #08162B);
    overflow: hidden;
}

.page-blog__hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-blog__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Maintain aspect ratio for desktop */
    opacity: 0.8;
}

.page-blog__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    width: 90%;
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog__main-title {
    font-size: clamp(38px, 5vw, 56px); /* Using clamp for responsive H1 */
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.page-blog__hero-content .page-blog__description {
    font-size: clamp(18px, 2vw, 22px);
    color: #f0f8ff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Introduction Section */
.page-blog__introduction-section {
    background-color: var(--deep-navy, #08162B);
    padding: 60px 0;
}