* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fffbf0;
}

/* Header Styles */
.leaderboard-slider {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #fffbf0;
    margin: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    background: #fffbf0;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #fffbf0;
}

.slide {
    width: 100%;
    height: 180px;
    background: #fffbf0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    overflow: hidden;
}

.slide:has(img) {
    display: block;
    padding: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s ease-in-out;
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    background: #fffbf0;
}

.slide:hover img {
    transform: scale(1.02);
    filter: brightness(1.15) contrast(1.1) saturate(1.15);
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(40, 38, 18, 0.1) 0%,
        transparent 25%,
        transparent 75%,
        rgba(40, 38, 18, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.slide:nth-child(2) {
    background: #fffbf0;
}

.slide:nth-child(3) {
    background: #fffbf0;
}

.slide:nth-child(4) {
    background: #fffbf0;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #249458;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(36, 148, 88, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Leaderboard Banner Responsive */
@media (max-width: 768px) {
    .leaderboard-slider {
        height: 140px;
        border-radius: 0 0 15px 15px;
    }

    .slider-container {
        border-radius: 0 0 15px 15px;
    }

    .slide {
        height: 140px;
    }

    .slide img {
        height: 140px;
        filter: brightness(1.05) contrast(1.02) saturate(1.05);
    }

    .slider-dots {
        bottom: 10px;
        padding: 6px 12px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .leaderboard-slider {
        height: 120px;
        border-radius: 0 0 10px 10px;
    }

    .slider-container {
        border-radius: 0 0 10px 10px;
    }

    .slide {
        height: 120px;
        font-size: 12px;
    }

    .slide img {
        height: 120px;
    }

    .slider-dots {
        bottom: 8px;
        gap: 8px;
        padding: 4px 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        transform: scale(1.15);
    }
}

.top-bar {
    background: linear-gradient(135deg, #282612, #2d2d2d);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fffbf0;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e4ddf4;
}

.logo {
    color: #fffbf0;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3px;
    text-decoration: none;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 40px 8px 15px;
    border: none;
    border-radius: 25px;
    background-color: #fffbf0;
    color: #2d2d2d;
    width: 250px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #249458;
    cursor: pointer;
}

/* Navigation */
.main-nav {
    background-color: #fffbf0;
    border-bottom: 1px solid #e4ddf4;
    position: sticky;
    top: 45px; /* Height of top bar (padding 10px * 2 + content height ~50px) */
    z-index: 999;
    transition: top 0.3s ease;
}

@media (min-width: 769px) {
    .main-nav {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: relative;
        top: auto;
        box-shadow: none;
    }
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-content img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 15px 0;
    margin: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px 0;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff !important;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger span {
        background-color: #fff;
    }
}

/* Hamburger in top bar for mobile */
.top-bar .hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

@media (max-width: 768px) {
    .top-bar .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 10px;
        cursor: pointer;
    }

    .top-bar .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #fff !important;
        border: 1px solid #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu li a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #249458;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #249458;
    transition: all 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
    left: 0;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Section */
.featured-section {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .featured-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0;
    }
}

.hero-post {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.hero-post h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-post .post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #e4ddf4;
}

.featured-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.featured-card {
    position: relative;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.featured-card * {
    position: relative;
    z-index: 2;
}

.featured-card h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.featured-card .post-meta {
    font-size: 12px;
    color: #e4ddf4;
}

.card-1 {
    background-image: url('https://images.unsplash.com/photo-1551135049-8a33b5883817?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.card-2 {
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

.card-3 {
    background-image: url('https://images.unsplash.com/photo-1496128858413-b36217c2ce36?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
}

/* Editor's Picks Section */
.editors-picks {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 15px;
}

.section-icon {
    width: 4px;
    height: 30px;
    background-color: #249458;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editors-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .editors-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.main-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-article img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.main-article-content {
    padding: 30px;
}

.main-article h2 {
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main-article p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more-btn {
    background-color: #249458;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-item:hover {
    transform: translateY(-3px);
}

.article-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info h4 {
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-info .post-meta {
    font-size: 12px;
    color: #666;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-overlay p {
    font-size: 14px;
    color: #e4ddf4;
    margin-bottom: 10px;
}

.gallery-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #e4ddf4;
}

/* Video Gallery Section */
.video-gallery-section {
    margin-bottom: 60px;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(36, 148, 88, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background: rgba(36, 148, 88, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: bold;
}

.video-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-gallery-footer {
    text-align: center;
    padding: 20px 0;
}

.load-more-videos {
    background: linear-gradient(135deg, #249458, #282612);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-videos:hover {
    background: linear-gradient(135deg, #282612, #2d2d2d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 148, 88, 0.3);
}

/* Video Gallery Mobile Responsive */
@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-item {
        margin-bottom: 0;
    }

    .video-thumbnail {
        height: 180px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .video-info {
        padding: 15px;
    }

    .video-info h3 {
        font-size: 16px;
    }

    .video-info p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .video-meta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .load-more-videos {
        padding: 12px 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .video-thumbnail {
        height: 160px;
    }

    .video-info h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .video-info p {
        font-size: 12px;
    }

    .video-meta {
        font-size: 11px;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

/* Social Media Section */
.social-media-section {
    margin-bottom: 60px;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.social-media-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.social-media-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.social-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.social-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-media-item:hover .social-thumbnail img {
    transform: scale(1.05);
}

.social-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: 2;
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: linear-gradient(45deg, #E1306C, #FD1D1D, #F77737, #FCAF45); }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.youtube { background: #FF0000; }
.social-icon.linkedin { background: #0077B5; }
.social-icon.tiktok { background: #000000; }

.social-stats {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.social-stats span {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 3px;
}

.social-info {
    padding: 20px;
}

.social-info h3 {
    font-size: 20px;
    color: #2d2d2d;
    margin-bottom: 10px;
    font-weight: bold;
}

.social-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.facebook-btn { background: #1877F2; }
.facebook-btn:hover { background: #166FE5; }

.instagram-btn { background: linear-gradient(45deg, #E1306C, #FD1D1D); }
.instagram-btn:hover { background: linear-gradient(45deg, #C13584, #E1306C); }

.twitter-btn { background: #1DA1F2; }
.twitter-btn:hover { background: #1A91DA; }

.youtube-btn { background: #FF0000; }
.youtube-btn:hover { background: #CC0000; }

.linkedin-btn { background: #0077B5; }
.linkedin-btn:hover { background: #005885; }

.tiktok-btn { background: #000000; }
.tiktok-btn:hover { background: #333333; }

.social-media-footer {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin-top: 20px;
}

.social-call-to-action h3 {
    color: #2d2d2d;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.social-call-to-action p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.social-quick-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.quick-link.facebook { background: #1877F2; }
.quick-link.instagram { background: linear-gradient(45deg, #E1306C, #FD1D1D); }
.quick-link.twitter { background: #1DA1F2; }
.quick-link.youtube { background: #FF0000; }
.quick-link.linkedin { background: #0077B5; }
.quick-link.tiktok { background: #000000; }

/* Social Media Mobile Responsive */
@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-thumbnail {
        height: 160px;
    }

    .social-info {
        padding: 15px;
    }

    .social-info h3 {
        font-size: 18px;
    }

    .social-info p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .social-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .social-media-footer {
        padding: 20px 15px;
    }

    .social-call-to-action h3 {
        font-size: 20px;
    }

    .social-call-to-action p {
        font-size: 14px;
    }

    .quick-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .social-thumbnail {
        height: 140px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 10px;
        left: 10px;
    }

    .social-stats {
        bottom: 8px;
        right: 8px;
        gap: 6px;
    }

    .social-stats span {
        padding: 3px 6px;
        font-size: 10px;
    }

    .social-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .social-info p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .social-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .social-call-to-action h3 {
        font-size: 18px;
    }

    .social-call-to-action p {
        font-size: 13px;
    }

    .quick-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .social-quick-links {
        gap: 10px;
    }
}

/* Featured Gallery Items */
.gallery-featured {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .gallery-featured {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .gallery-main {
        grid-column: span 2;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .gallery-featured {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-main {
        grid-column: span 1;
    }
}

.gallery-main {
    grid-row: span 2;
    height: 400px;
}

.gallery-sub {
    height: 190px;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e4ddf4;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s ease;
}

.modal-nav:hover {
    background: rgba(255,255,255,0.3);
}

.modal-prev {
    left: -70px;
}

.modal-next {
    right: -70px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Floating Right Ads Banner */
.floating-ads {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-ads.hidden {
    right: -320px;
}

.ads-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 300px;
    border: 2px solid #249458;
}

.ads-header {
    background: linear-gradient(135deg, #249458, #282612);
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.ads-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(45deg, #e4ddf4, #fffbf0);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ads-content img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ads-content h3 {
    color: #2d2d2d;
    margin-bottom: 10px;
    font-size: 18px;
}

.ads-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ads-btn {
    background: #249458;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ads-btn:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
}

.ads-toggle {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: #249458;
    color: white;
    border: none;
    width: 40px;
    height: 80px;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
}

.ads-toggle:hover {
    background: #2d2d2d;
    transform: translateY(-50%) translateX(-5px);
}

.ads-toggle i {
    transition: transform 0.3s ease;
}

.floating-ads.hidden .ads-toggle i {
    transform: rotate(180deg);
}

/* Mobile responsive for floating ads */
@media (max-width: 1024px) {
    .floating-ads {
        right: 10px;
        top: auto;
        bottom: 60px; /* Above the floating ticker */
        transform: none;
    }

    .floating-ads.hidden {
        right: -280px;
    }

    .ads-container {
        width: 280px;
    }

    .ads-toggle {
        left: -35px;
        width: 35px;
        height: 60px;
        font-size: 14px;
    }

    .ads-content {
        padding: 15px;
        min-height: 200px;
    }

    .ads-content img {
        max-height: 150px;
    }

    .ads-content h3 {
        font-size: 16px;
    }

    .ads-content p {
        font-size: 13px;
    }

    .ads-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .floating-ads {
        right: 5px;
        bottom: 50px;
    }

    .ads-container {
        width: 260px;
    }

    .floating-ads.hidden {
        right: -265px;
    }

    .ads-toggle {
        left: -30px;
        width: 30px;
        height: 50px;
        font-size: 12px;
    }

    .ads-content {
        padding: 12px;
        min-height: 180px;
    }

    .ads-content img {
        max-height: 120px;
    }

    .ads-content h3 {
        font-size: 14px;
    }

    .ads-content p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .ads-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Floating Running Text */
.floating-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #5b27ef;
    color: white;
    height: 45px;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
    border-top: 2px solid #282612;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.ticker-label {
    background: #282612;
    color: #e4ddf4;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    border-right: 2px solid #249458;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.ticker-text {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll-left 60s linear infinite;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.ticker-item {
    padding-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-item i {
    color: #fffbf0;
    font-size: 12px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
}

/* Sticky Header Wrapper - Works on all screen sizes */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Top Bar - Preserve original styling */
.top-bar {
    background: linear-gradient(135deg, #282612, #2d2d2d);
    padding: 10px 0;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Main Navigation - Preserve original styling */
.main-nav {
    background: #fffbf0;
}



/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        width: 30px;
        height: 25px;
        z-index: 1001;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-content {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
    }

    .nav-logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-content img {
        height: 35px;
    }

    .nav-content .hamburger {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fffbf0; /* Match website background color */
        flex-direction: column;
        gap: 0;
        padding: 120px 0 0 0; /* Account for sticky header height */
        margin: 0;
        box-shadow: none;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        border-bottom: 1px solid #e4ddf4;
        width: 100%;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        display: block;
        padding: 20px 30px;
        text-align: left;
        font-size: 18px;
        font-weight: 500;
        color: #2d2d2d;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: #e4ddf4;
        padding-left: 40px;
    }

    .nav-menu li a::after {
        display: none;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-content {
        padding: 0 25px;
    }

    .nav-content img {
        height: 38px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .container {
        padding: 0 25px;
    }

    .hero-post {
        height: 400px;
        padding: 30px;
    }

    .hero-post h1 {
        font-size: 30px;
    }

    .featured-card {
        height: 130px;
        padding: 18px;
    }

    .main-article h2 {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-item {
        height: 230px;
    }

    .event-card h3 {
        font-size: 20px;
    }

    .upcoming-events {
        padding: 22px;
    }
}

/* Improved Mobile Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center;
    }

    .social-icons {
        order: 1;
        gap: 10px;
    }

    .logo {
        order: 2;
        font-size: 24px;
        letter-spacing: 2px;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .search-box input {
        width: 100%;
    }

    .hamburger {
        order: 4;
    }
}

    .container {
        padding: 0 15px;
    }

    .hero-post {
        height: 350px;
        padding: 25px;
    }

    .hero-post h1 {
        font-size: 26px;
    }

    .featured-grid {
        gap: 15px;
    }

    .featured-card {
        height: 140px;
        padding: 15px;
    }

    .featured-card h3 {
        font-size: 14px;
    }

    .main-article-content {
        padding: 20px;
    }

    .main-article h2 {
        font-size: 24px;
    }

    .article-list {
        gap: 15px;
    }

    .article-item {
        padding: 15px;
        gap: 12px;
    }

    .article-thumb {
        width: 70px;
        height: 70px;
    }

    .article-info h4 {
        font-size: 14px;
    }

    .gallery-section,
    .events-section {
        margin-bottom: 40px;
    }

    .gallery-main,
    .gallery-sub {
        height: 220px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay h4 {
        font-size: 16px;
    }

    .modal-nav {
        display: none;
    }

    .event-card {
        margin-bottom: 20px;
    }

    .event-card-header {
        height: 180px;
        padding: 15px;
    }

    .event-card-content {
        padding: 20px;
    }

    .event-card h3 {
        font-size: 20px;
    }

    .upcoming-events {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 15px;
        margin-top: 50px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-brand img {
        height: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 12px 15px;
    }

    .nav-logo {
        justify-content: center;
    }

    .nav-content img {
        height: 32px;
    }

    .container {
        padding: 0 12px;
    }

    .top-bar-content {
        padding: 12px 15px;
        gap: 10px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        font-size: 16px;
    }

    .search-box {
        width: 100%;
        order: 3;
    }

    .search-box input {
        width: 100%;
        padding: 8px 35px 8px 15px;
    }

    .hero-post {
        padding: 20px;
        height: 280px;
    }

    .hero-post h1 {
        font-size: 22px;
        line-height: 1.1;
    }

    .hero-post .post-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .main-article img {
        height: 220px;
    }

    .main-article-content {
        padding: 18px;
    }

    .main-article h2 {
        font-size: 20px;
    }

    .main-article p {
        font-size: 14px;
    }

    .read-more-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .article-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }

    .article-thumb {
        width: 100%;
        height: 120px;
        margin-bottom: 10px;
    }

    .article-info h4 {
        font-size: 15px;
        line-height: 1.4;
    }

    .article-info .post-meta {
        font-size: 11px;
    }

    .gallery-main,
    .gallery-sub,
    .gallery-item {
        height: 180px;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-overlay h4 {
        font-size: 14px;
    }

    .gallery-overlay p {
        font-size: 12px;
        display: none; /* Hide on very small screens */
    }

    .event-card-header {
        height: 160px;
        padding: 12px;
    }

    .event-card-content {
        padding: 15px;
    }

    .event-card h3 {
        font-size: 18px;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .event-description {
        font-size: 14px;
    }

    .event-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        margin-top: 10px;
    }

    .upcoming-events {
        padding: 15px;
    }

    .upcoming-events h3 {
        font-size: 18px;
    }

    .upcoming-event-item {
        padding: 12px 0;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .upcoming-date {
        align-self: center;
        margin-bottom: 5px;
    }

    .upcoming-info h4 {
        font-size: 13px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        padding: 0 12px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-logo {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 25px;
        padding: 10px 15px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .floating-ticker {
        height: 35px;
    }

    .ticker-label {
        padding: 0 12px;
        font-size: 11px;
    }

    .ticker-text {
        font-size: 12px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        font-size: 16px;
    }
}

/* Events Section */
.events-section {
    margin-bottom: 60px;
}

.events-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .events-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.events-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-card-header {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #249458;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.event-date-badge .day {
    font-size: 24px;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 12px;
    text-transform: uppercase;
}

.event-card-content {
    padding: 25px;
}

.event-card h3 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-btn {
    background: #249458;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 61, 36, 0.3);
}

/* Upcoming Events Sidebar */
.upcoming-events {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.upcoming-events h3 {
    color: #2d2d2d;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid #e4ddf4;
    padding-bottom: 10px;
}

.upcoming-event-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.upcoming-event-item:last-child {
    border-bottom: none;
}

.upcoming-date {
    background: #249458;
    color: #ffff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    min-width: 50px;
}

.upcoming-info h4 {
    font-size: 14px;
    color: #2d2d2d;
    margin-bottom: 5px;
    line-height: 1.3;
}

.upcoming-info .time {
    font-size: 12px;
    color: #666;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #282612, #2d2d2d);
    color: #fffbf0;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #e4ddf4;
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #249458;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e4ddf4;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    color: #e4ddf4;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e4ddf4;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    background: #249458;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e4ddf4;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e4ddf4;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-post {
        padding: 20px;
        height: 300px;
    }

    .hero-post h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .main-article-content {
        padding: 20px;
    }

    .main-article h2 {
        font-size: 22px;
    }
}
