/* Styles généraux pour le site */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f2ee;
    margin: 0;
    padding: 0;
}

/* Styles pour la page des services */
.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('drive/Site/Background_icons_and_videos/background/BG_001.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-bottom: 50px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #5a4d41;
    margin-bottom: 1rem;
}

a {
    color: #6d5e53;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a403a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Styles spécifiques pour la page des cours */
.cours-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.cours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cours-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.cours-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cours-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #ddd;
}

.cours-content {
    padding: 20px;
}

.cours-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cours-description {
    color: #666;
    margin-bottom: 15px;
}

.cours-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.cours-cta {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #f9f7f5;
    border-radius: 8px;
}

.cours-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5a4d41;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cours-button:hover {
    background-color: #4a403a;
}

.cours-faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.2rem;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    color: #666;
    padding-left: 20px;
    display: none;
}

.faq-answer.show {
    display: block;
}
