   /* Events Page Styles */
        .events-page {
            padding: 30px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            color: #2c4f3a;
            margin-bottom: 15px;
        }
        
        .page-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .event-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .event-image {
            height: 200px;
            overflow: hidden;
        }
        
        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-image img {
            transform: scale(1.05);
        }
        
        .event-content {
            padding: 20px;
        }
        
        .event-date {
            display: flex;
            align-items: center;
            color: #d4a762;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .event-date i {
            margin-right: 8px;
        }
        
        .event-title {
            font-size: 1.3rem;
            color: #2c4f3a;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .event-excerpt {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .read-more {
            color: #d4a762;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .event-card:hover .read-more i {
            transform: translateX(3px);
        }
        
        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-container {
            background: #fff;
            border-radius: 8px;
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #f5f5f5;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .modal-image {
            height: 350px;
            overflow: hidden;
        }
        
        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-content {
            padding: 30px;
        }
        
        .modal-date {
            display: flex;
            align-items: center;
            color: #d4a762;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .modal-date i {
            margin-right: 8px;
        }
        
        .modal-title {
            font-size: 1.8rem;
            color: #2c4f3a;
            margin-bottom: 20px;
        }
        
        .modal-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .event-details {
            margin-bottom: 25px;
        }
        
        .detail-item {
            display: flex;
            margin-bottom: 10px;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c4f3a;
            min-width: 120px;
        }
        
        .detail-value {
            color: #555;
        }
        
        .register-btn {
            background: #d4a762;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .register-btn:hover {
            background: #c39652;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-image {
                height: 250px;
            }
        }