
        /* Gallery Styles */
        .gallery-section {
            margin-bottom: 4rem;
        }
        .section-subtitle {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        
        /* Main Gallery Grid */
        .main-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .gallery-item {
            height: 430px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Animation classes */
        .fade-out {
            animation: fadeOut 1s forwards;
        }
        .fade-in {
            animation: fadeIn 1s forwards;
        }
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Slider Styles */
        .slider-container {
            position: relative;
            max-width: 100%;
            margin: 2rem auto;
            overflow: hidden;
        }
        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slider-item {
            min-width: 33.33%;
            padding: 0 10px;
            box-sizing: border-box;
        }
        .slider-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
        }
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .slider-btn {
            background: #f39c12;
            color: white;
            border: none;
            padding: 8px 16px;
            margin: 0 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .slider-btn:hover {
            background: #e74c3c;
        }
        
        /* Image Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
        }
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 80vh;
            margin-top: 5vh;
            animation: zoom 0.3s;
            object-fit: contain;
        }
        @keyframes zoom {
            from {transform: scale(0.9)}
            to {transform: scale(1)}
        }
        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #ff7f0d;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }
        .close:hover {
            color: #f39c12;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .main-gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .slider-item {
                min-width: 100%;
            }
            .modal-content {
                max-width: 95%;
                max-height: 85vh;
            }
        }
/* Main Gallery Styles */
.gallery-section {
    margin-bottom: 4rem;
}
.section-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
}
.main-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 0.5s ease;
}
.slider-item {
    min-width: 33.33%;
    padding: 0 10px;
    box-sizing: border-box;
}
.slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.slider-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-btn:hover {
    background: #e74c3c;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5vh;
}

/* Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.gallery-nav a {
    padding: 1rem 2rem;
    margin: 0 1rem;
    background: #f39c12;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.gallery-nav a:hover {
    background: #e74c3c;
}

@media (max-width: 768px) {
    .main-gallery {
        grid-template-columns: 1fr;
    }
    .slider-item {
        min-width: 100%;
    }
}
.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.article-image {
    height: 200px;
    overflow: hidden;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-content {
    padding: 1.5rem;
}
.article-date {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Article Modal Styles */
.article-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}
.modal-content {
    background-color: #fff;
    margin: 5% 20px;
    /* width: 80%; */
    /* max-width: 600px; */
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-modal:hover {
    color: #333;
}
.modal-article-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.modal-article-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}
.modal-article-date {
    color: #f39c12;
    margin-bottom: 20px;
    display: block;
}
.modal-article-body {
    line-height: 1.8;
    color: #555;
}

/* Navigation */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1;
}
.dropdown:hover .dropdown-menu {
    display: block;
}