/* Cours Inscription Grid */
.cours-inscription-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.cours-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cours-card:hover {
    border-color: var(--secondary-color);
}

.cours-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cours-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cours-card ul {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
}

.cours-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
}

.cours-card ul li:last-child {
    border-bottom: none;
}

/* Inscription Details Section */
.inscription-details {
    background: linear-gradient(to right, #f5f7fa, #f1f2f3);
    padding: 50px 0;
    margin-top: 40px;
}

.helloasso-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
}

.helloasso-widget iframe {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Moyens de Paiement Grid */
.moyens-paiement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.paiement-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.paiement-card:hover {
    border-color: var(--secondary-color);
}

.paiement-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.paiement-card:hover i {
    color: var(--secondary-color);
}

.paiement-card h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.paiement-card p {
    color: #666;
}

/* Map Section */
.map-section {
    padding: 50px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cours-inscription-grid,
    .moyens-paiement-grid {
        grid-template-columns: 1fr;
    }

    .hero-inscription h1 {
        font-size: 2rem;
    }

    .hero-inscription .lead {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.courses-table, 
.payment-methods-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.courses-table thead, 
.payment-methods-table thead {
    background-color: var(--primary-color);
    color: white;
}
.courses-table th, 
.payment-methods-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    /* Removed hover effect */
}
.courses-table td, 
.payment-methods-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}
.courses-table tr:last-child td, 
.payment-methods-table tr:last-child td {
    border-bottom: none;
}
.courses-table tr:nth-child(even), 
.payment-methods-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.courses-table td ul, 
.payment-methods-table td ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.courses-table td ul li, 
.payment-methods-table td ul li {
    margin-bottom: 5px;
}
.courses-table i, 
.payment-methods-table i {
    margin-right: 10px;
    color: var(--secondary-color);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .courses-table, 
    .payment-methods-table {
        font-size: 0.9rem;
    }
    .courses-table th, 
    .payment-methods-table th,
    .courses-table td, 
    .payment-methods-table td {
        padding: 10px;
    }
}