      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;        
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: #0d3152;
            color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .event-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(13, 49, 82, 0.15);
        }

        .event-header {
            border-bottom: 2px solid #0d3152;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

        .event-title {
            color: #0d3152;
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .event-date {
            background-color: #0d3152;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 10px;
        }

        .event-desc {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .event-location {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #666;
        }

        .event-location i {
            margin-right: 8px;
            color: #0d3152;
        }

        .event-contact {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .contact-title {
            color: #0d3152;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .contact-info i {
            width: 20px;
            margin-right: 10px;
            color: #0d3152;
        }

        .contact-link {
            color: #0d3152;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-link:hover {
            color: #1a4a7a;
            text-decoration: underline;
        }

        .no-events {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 1.1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            color: #777;
            font-size: 14px;
            border-top: 1px solid #e0e0e0;
        }

        .event-responsable {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #666;
        }

        .event-responsable i {
            margin-right: 8px;
            color: #0d3152;
        }

        @media (max-width: 768px) {
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .event-title {
                font-size: 1.3rem;
            }
        }

        .caja {
            max-height: 250px;
            overflow-y: auto;
            overflow-x: hidden;
            border: 1px solid #ddd;
            padding: 12px;
            box-sizing: border-box;
            background: #f9f9f9;
            border-radius: 5px;
            margin-top: 10px;
        }

        .map-link {
            color: #0d3152;
            text-decoration: none;
            font-weight: 500;
        }

        .map-link:hover {
            text-decoration: underline;
        }