   .containerMeals {
            max-width: 1200px;
            margin: 0 auto;
            margin-top:  120px;
        }
       .AllSectionTitle{
        font-size: 35px;
        color: rgb(255, 166, 0);
            text-align: center;
border-bottom: solid orange;
margin-bottom: 18px;
       } 
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h1 {
            font-size: 2.8rem;
            color: #2c7873;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h1:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, #2c7873, #2c7873);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: #2c7873;
            max-width: 600px;
            margin: 20px auto 0;
        }
        
        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .event-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .event-image {
            height: 200px;
            width: 100%;
            overflow: hidden;
        }
        .EventListContainer{
            margin-top: 70px;
        }.eventListTitle{
            margin-bottom: 20px;
            font-size: 30px;
            color: orange;
                    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif 

        }
        .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-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #2c7873;
            color: white;
            width: 100px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }
        
        .event-date .day {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .event-date .month {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            margin-top: 5px;
        }
        
        .event-content {
            padding: 25px;
        }
        
        .event-category {
            display: inline-block;
            background: linear-gradient(to right, #2c7873, #2c7873);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .event-title {
            font-size: 1.4rem;
            color: #2c7873;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .event-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .event-info i {
            margin-right: 8px;
            color: #2c7873;
            width: 20px;
        }
        
        .event-description {
            color: #5d6d7e;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .event-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .event-price {
            font-size: 1.5rem;
            color: #2c7873;
            font-weight: 700;
        }
        
        .event-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #7f8c8d;
        }
        
        .btn-register {
            background: linear-gradient(to right, #2c7873, #2c7873);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-register:hover {
            background: linear-gradient(to right, #2c7873, #2c7873);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .view-all-container {
            text-align: center;
            margin-top: 60px;
        }
        
        
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .events-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
            }
            
            .section-header h1 {
                font-size: 2.2rem;
            }
            
            .event-card {
                margin-bottom: 0;
            }
        }
        
        @media (max-width: 480px) {
            .events-container {
                grid-template-columns: 1fr;
            }
            
            .section-header h1 {
                font-size: 1.8rem;
            }
            
            .filter-container {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }
           .order-confirmation-wrapper{
        margin-top:80px
       }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .order-summary {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
        }

        .meal-details {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .meal-image {
            height: 250px;
            width: 100%;
             position: relative;
            overflow: hidden;
        }

        .meal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .meal-info {
            padding: 30px;
        }

        .meal-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .meal-description {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .meal-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #5a67d8;
            font-weight: 500;
        }

        .meta-icon {
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e0e7ff;
            border-radius: 50%;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #10b981;
            margin-top: 10px;
        }

        .order-actions {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
        }

        .order-actions h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 25px;
        }

        .confirmation-message {
            background-color: #f0f9ff;
            border-left: 4px solid #3b82f6;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
 

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .btn {
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 1.1rem;
             cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

       

        .btn-secondary {
            background-color: #f1f5f9;
            color: #475569;
        }

        .btn-secondary:hover {
            background-color: #e2e8f0;
        }

        .icon {
            width: 22px;
            height: 22px;
        }

        .checkmark-circle {
            width: 80px;
            height: 80px;
            background-color: #d1fae5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .checkmark {
            width: 40px;
            height: 40px;
            color: #10b981;
        }

        .success-message {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .success-message h2 {
            font-size: 2rem;
            color: #10b981;
            margin-bottom: 15px;
        }

        .success-message p {
            color: #6b7280;
            max-width: 500px;
            margin: 0 auto 30px;
        }

        @media (max-width: 768px) {
            .order-confirmation-wrapper {
                padding: 20px 0 60px;
                        margin-top:40px

            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .meal-details, .order-actions {
                min-width: 100%;
            }
            
            .btn {
                padding: 14px 20px;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.7rem;
            }
            
            .meal-info {
                padding: 20px;
            }
            
            .order-actions {
                padding: 20px;
            }
        }
        .event-map {
    width: 100%;
    height: 180px;
    border-radius: 12px;
}