.home-content-section {
    margin-top: 40px; 
}

.home-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; 
    gap: 40px;
}

.main-content .section-title {
    margin-top: 0;
}
.main-content p {
    line-height: 1.7;
}
.qualifications-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}
.qualifications-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}
.qualifications-list li:before {
    content: '\f0da'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0056b3;
    margin-right: 10px;
}

.sidebar .section-title {
    margin-top: 0;
}
.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-news-item {
    display: block;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease-in-out;
}
.sidebar-news-item:hover {
    border-color: #0056b3;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.sidebar-news-title {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.sidebar-news-date {
    font-size: 0.85em;
    color: #888;
}
.sidebar-read-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    color: #0056b3;
    text-decoration: none;
}
.sidebar-read-more:hover {
    text-decoration: underline;
}

.promo-section-revamped {
    margin: 60px 0;
}

.promo-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px; 
}

.promo-links-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.promo-link-card {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease-in-out;
}
.promo-link-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-left-color: #0056b3;
    color: #000;
}
.promo-link-card i {
    font-size: 2em;
    color: #007bff;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}
.promo-link-card span {
    font-size: 1.1em;
    font-weight: 600;
}

.promo-banner-main img {
    margin-top: 60px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.promo-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-sub-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.promo-sub-item img:hover {
    transform: scale(1.03);
}

.video-section {
    padding: 60px 0;
    margin-top: 40px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.video-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .promo-top-grid {
        grid-template-columns: 1fr; 
    }
    .promo-sub-grid {
        grid-template-columns: 1fr;
    }
    .home-layout-grid {
        grid-template-columns: 1fr; 
    }
    .promo-banner-main img {
    margin-top: 0px;
    }
}