body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}
a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s;
}
a:hover {
    color: #004499;
}
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
    height: 40px;
}
.featured-news {
    margin-top: 20px;
}
.main-feature {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.main-feature img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.feature-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}
.feature-caption .badge {
    font-size: 14px;
    margin-bottom: 10px;
}
.feature-caption h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.feature-caption p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.secondary-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.secondary-feature {
    position: relative;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}
.secondary-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.secondary-feature .feature-caption {
    padding: 15px;
}
.secondary-feature .feature-caption h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.section-header h2 {
    font-size: 1.8rem;
    color: #222;
}
.filter-tabs {
    display: flex;
    gap: 10px;
}
.filter-tabs button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-tabs button.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-content {
    padding: 20px;
}
.news-category {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #555;
}
.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
}
.news-meta i {
    margin-right: 5px;
}
.newsletter {
    background: #f8f9fa;
}
.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.newsletter p {
    font-size: 1rem;
    color: #666;
}
.newsletter-form .input-group {
    margin-bottom: 10px;
}
.newsletter-form .form-control {
    height: 50px;
    border-radius: 4px 0 0 4px;
}
.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}
.city-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.city-tabs button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}
.city-tabs button.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}
.city-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.city-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.city-content {
    padding: 20px;
}
.city-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}
.city-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.city-content ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.city-content ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.city-content ul li a {
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.city-content ul li a:hover {
    color: #0066cc;
}
.podcast-card,
.video-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.podcast-card h3,
.video-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #222;
}
.podcast-card h3 i,
.video-card h3 i {
    margin-right: 10px;
    color: #0066cc;
}
.podcast-episode {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.podcast-episode img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}
.episode-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.episode-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}
.player-controls {
    display: flex;
    gap: 10px;
}
.podcast-links,
.video-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 20px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.footer {
    background: #222;
}
.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}
.footer p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}
.social-links a:hover {
    background: #0066cc;
    transform: translateY(-3px);
}
.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: white;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.footer-contact i {
    margin-right: 10px;
    color: #0066cc;
    margin-top: 3px;
}
.footer-newsletter h6 {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}
.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}
.footer-newsletter .form-control::placeholder {
    color: #aaa;
}
.footer-newsletter .btn {
    background: #0066cc;
    border: none;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #004499;
    transform: translateY(-3px);
}
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.filter-tabs button {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.filter-tabs button.active,
.filter-tabs button:hover,
.filter-tabs button:focus {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    outline: none;
}
@media (max-width: 768px) {
    .section-header {
        align-items: stretch;
        gap: 0.5rem;
    }
    .section-header h2 {
        font-size: 1.4rem;
        text-align: left;
    }
    .filter-tabs {
        gap: 0.3rem;
        justify-content: flex-start;
    }
    .filter-tabs button {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }
}
@media (max-width: 480px) {
    .section-header {
        padding: 0 0.5rem;
    }
    .filter-tabs {
        flex-direction: column;
        gap: 0.4rem;
    }
    .filter-tabs button {
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }
}