<style>
.dynamic-news-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-item-small {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    border-bottom: 10px solid #eee;
}

.news-small-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 8px;
}

.news-small-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
}

.news-small-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.source-badge {
    font-size: 0.7em;
    padding: 3px 10px;
    border-radius: 12px;
}

.source-badge.news { background: #006633; color: white; }
.source-badge.opinion { background: #ff9933; color: white; }

.days-badge {
    font-size: 0.7em;
    padding: 3px 10px;
    border-radius: 12px;
    background: #ff4444;
    color: white;
}

.two-leaders-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.president-card { border-top: 5px solid #006633; }
.secretary-card { border-top: 5px solid #ff9933; }

.leader-photo {
    text-align: center;
}

.leader-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.leader-readmore {
    color: #ff9933;
    text-decoration: none;
}

@media (max-width: 768px) {
    .two-leaders-container {
        grid-template-columns: 1fr;
    }
    
    .news-item-small {
        flex-direction: column;
        text-align: left;
    }
    
    .news-small-img, .news-small-icon {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

/* Leader Cards */
.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.president-card {
    border-top: 4px solid #006633;
}

.secretary-card {
    border-top: 4px solid #ff9933;
}

.leader-card-header {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.leader-card-header h2 {
    margin: 0;
    font-size: 1.1em;
    color: #006633;
}

.leader-card-content {
    padding: 20px;
    text-align: center;
}

.leader-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid;
}

.president-card .leader-photo img {
    border-color: #006633;
}

.secretary-card .leader-photo img {
    border-color: #ff9933;
}

.leader-photo h3 {
    margin: 10px 0 5px;
    font-size: 1.1em;
    color: #333;
}

.leader-short-message p {
    font-size: 0.85em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

.leader-readmore {
    display: inline-block;
    color: #ff9933;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85em;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #006633;
}

.stat-label {
    color: #666;
    margin-top: 10px;
}

/* Leadership Section */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    color: #006633;
    font-size: 1.6em;
    margin-top: 10px;
}

.leadership {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.leader-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Quick Links */
.quick-links {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.quick-links h3 {
    color: #006633;
    margin-bottom: 20px;
}

.quick-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.quick-links-grid a {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.quick-links-grid a:hover {
    background: #006633;
    color: white;
}

/* Hero Banner */
.hero-banner {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .two-column-home {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .two-column-home {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .leadership {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .news-item-small {
        flex-direction: column;
        text-align: left;
    }
    
  
    
    .hero-banner {
        min-height: 300px;
    }
    
    .hero-banner h1 {
        font-size: 1.8em !important;
    }
    
    .hero-banner p {
        font-size: 1em !important;
    }
    
    .hero-banner a {
        padding: 8px 20px !important;
        font-size: 0.9em !important;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.4em !important;
    }
    
    .hero-banner {
        min-height: 250px;
    }
    
    .leader-photo img {
        width: 80px;
        height: 80px;
    }
}
</style>