:root {
            --primary-color: #68BE43;
            --text-color: #333;
            --light-text: #555;
            --border-color: #e0e0e0;
            --accent-color: #ff6b6b;
        }
        
        body {
            background: #f5f5f5;
            color: var(--text-color);
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        h1 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
        }
        
        /* Event description text */
        .event-description {
            color: #666;
            margin-bottom: 1rem; 
            flex-grow: 1;
            font-size: 0.9rem; 
            line-height: 1.4;
        }

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .event-content {
            padding: 20px;
        }
        
        .event-title {
            font-size: 1.4rem;
            margin: 0 0 15px 0;
            color: var(--text-color);
        }
        
        .event-meta {
            margin-bottom: 15px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: var(--light-text);
        }
        
        .meta-icon {
            color: var(--primary-color);
            width: 20px;
            margin-right: 10px;
            text-align: center;
        }
        
        .event-description {
            margin-bottom: 20px;
            color: var(--light-text);
        }
        
        .event-button {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .event-button:hover {
            background: #5aa836;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
        }
        
        .page-item {
            list-style: none;
        }
        
        .page-link {
            display: block;
            padding: 8px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            text-decoration: none;
            color: var(--text-color);
        }
        
        .page-link:hover, .page-item.active .page-link {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .search-filter {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .search-box, .filter-select {
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .search-box {
            flex: 1;
            min-width: 250px;
            background: white;
            outline: none;
        }
        
        .filter-select {
            background: white;
        }
        
        @media (max-width: 768px) {
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .search-filter {
                flex-direction: column;
            }
            
            .search-box, .filter-select {
                width: 100%;
            }
        }
        .fa-calendar-alt, .fa-map-marker-alt{
            color: var(--accent-color);
        }