
        .gallery_content_wrapper {
            margin-top: 90px;
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .gallery_header_section {
            margin-bottom: 60px;
        }
        
        .gallery_main_title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .brand_highlight {
            color: #f8aa7a;
        }
        
        .gallery_subtitle {
            font-size: 1.4rem;
            color: #7f8c8d;
            margin-bottom: 25px;
            font-weight: 300;
        }
        
        .gallery_description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gallery_filter_section {
            margin-bottom: 60px;
        }
        
        .filter_container {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .filter_buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .filter_btn {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 12px 25px;
            border-radius: 25px;
            color: #6c757d;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter_btn:hover,
        .filter_btn.active {
            background: #f8aa7a;
            border-color: #f8aa7a;
            color: white;
            transform: translateY(-2px);
        }
        
        .gallery_highlights_section {
            margin-bottom: 80px;
        }
        
        .section_header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section_header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section_header h2 i {
            color: #f8aa7a;
            margin-right: 15px;
        }
        
        .section_subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
        }
        
        .highlight_card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        
        .highlight_card:hover {
            transform: translateY(-10px);
        }
        
        .highlight_image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .highlight_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .highlight_card:hover .highlight_image img {
            transform: scale(1.1);
        }
        
        .highlight_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
        }
        
        .highlight_card:hover .highlight_overlay {
            opacity: 1;
        }
        
        .highlight_info {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .highlight_category {
            background: rgba(231, 76, 60, 0.9);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .highlight_type {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 5px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
        }
        
        .highlight_actions {
            text-align: center;
        }
        
        .btn_view {
            background: white;
            color: #f8aa7a;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn_view:hover {
            background: #f8aa7a;
            color: white;
            transform: translateY(-2px);
        }
        
        .highlight_content {
            padding: 25px;
        }
        
        .highlight_content h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .highlight_description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .highlight_meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .highlight_date,
        .highlight_location {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .highlight_stats {
            display: flex;
            gap: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .stat_item {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .gallery_grid_section {
            margin-bottom: 80px;
        }
        
        .gallery_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .gallery_item {
            transition: all 0.3s ease;
        }
        
        .gallery_card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .gallery_card:hover {
            transform: translateY(-5px);
        }
        
        .gallery_image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .gallery_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 15px;
        }
        
        .gallery_card:hover .gallery_overlay {
            opacity: 1;
        }
        
        .gallery_info {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .gallery_category {
            background: rgba(231, 76, 60, 0.9);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
        }
        
        .gallery_type.video {
            background: rgba(255, 255, 255, 0.9);
            color: #f8aa7a;
            padding: 6px;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery_actions {
            text-align: center;
        }
        
        .gallery_btn {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 10px;
            border-radius: 50%;
            text-decoration: none;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .gallery_btn:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .gallery_content {
            padding: 20px;
        }
        
        .gallery_content h5 {
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .gallery_date,
        .gallery_location {
            color: #7f8c8d;
            font-size: 0.85rem;
            margin-bottom: 5px;
        }
        
        .gallery_location {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .empty_gallery {
            text-align: center;
            padding: 80px 20px;
            color: #7f8c8d;
        }
        
        .empty_gallery i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #dee2e6;
        }
        
        .empty_gallery h3 {
            margin-bottom: 15px;
            color: #6c757d;
        }
        
        .load_more_section {
            margin-bottom: 60px;
        }
        
        .btn_load_more {
            background: #f8aa7a;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn_load_more:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }
        
        .gallery_stats_section {
            background: white;
            padding: 60px 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stats_container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat_card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .stat_icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f8aa7a, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .stat_icon i {
            font-size: 2rem;
            color: white;
        }
        
        .stat_content h3 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .stat_content p {
            color: #7f8c8d;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .gallery_main_title {
                font-size: 2.5rem;
            }
            
            .filter_buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .filter_btn {
                width: 100%;
                max-width: 200px;
                justify-content: center;
            }
            
            .gallery_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .highlight_meta {
                flex-direction: column;
                gap: 8px;
            }
            
            .stats_container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        

