/* Hero Section Style */
.hero-section {
    position: relative;
    height: 400px;
    background-image: linear-gradient(rgba(13, 36, 79, 0.7), rgba(13, 36, 79, 0.7)), url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809?q=80&w=2070');
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #D4A017; /* Gold Accent */
}

/* Custom Primary Button */
.btn-primary-custom {
    background-color: #0D244F;
    border-color: #0D244F;
    color: white;
}
.btn-primary-custom:hover {
    background-color: #1a428a;
    border-color: #1a428a;
    color: white;
}

/* Section Title Style */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0D244F;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #D4A017; /* Gold Accent */
}

/* News Card Animation */
.news-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}