 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #1f2937;
}

.course-content {
    margin-top: 160px;
    margin-left: 160px;
    padding-right: 40px;
}

.cours-title {
    margin-bottom: 60px;
}

.cours-title h1 {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    text-align: left;
    color: #111;
    text-decoration: underline;
    text-decoration-color: #009CDF;
    text-decoration-thickness: 12px;
    text-underline-offset: 8px;
    line-height: 1.5;
}

.info-box {
    max-width: 600px;
    background: #e0f2fe;
    padding: 32px;
}

.info-box h2 {
    font-family: "Unbounded", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: #2196F3;
    color: white;
    border: none;
    z-index: 1;
       box-shadow: #ffffff00 0px 0px ;
       transition: all 0.3s ease;
}
.sheen::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.sheen:hover::before {
    left: 100%;
}





.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}
.btn:hover {

    transform: translateY(2px);
    box-shadow: #1f293733 4px 4px ;
}

/* Responsive */
@media (max-width: 768px) {
    .sheen::before {
        display: none;
    }
    .course-content {
        margin-top: 120px;
        margin-left: 20px;
        padding-right: 20px;
    }

    .cours-title {
        margin-top: 120px;
        margin-bottom: 60px;
    }

    .cours-title h1 {
        font-size: clamp(2.1rem, 4vw, 2.5rem);
    }

    .info-box {
        max-width: 100%;
        padding: 24px;
    }

    .info-box h2 {
        font-size: 1.5rem;
    }

    .info-box p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 12px;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .course-content {
        margin-top:80px;
        margin-left: 16px;
        padding-right: 16px;
    }

    .cours-title {
        margin-bottom: 40px;
    }

    .cours-title h1 {
        font-size: clamp(1.9rem, 3vw, 2rem);
    }

    .info-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .info-box h2 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .info-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn {
        padding: 11px 16px;
        font-size: 0.9rem;
    }
}

/* Styles pour les sections moto/scooter */
.motorcycle-sections {
     max-width: 1250px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.motorcycle-sections .info-box {
    flex: 1 1 calc(50% - 12px);
    max-width: 550px;
    min-width: 300px;
}

.section-divider-container {
    position: relative;
    text-align: center;
    margin: 24px 0 48px 0;
}

.section-divider {
    border: none;
    height: 2px;
    background: #cbd5e1;
    margin: 0;
}

.section-divider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 20px;
    font-family: "Unbounded", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

/* Responsive pour les sections moto */
@media (max-width: 1200px) {
    .motorcycle-sections .info-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .motorcycle-sections {
        gap: 20px;
    }

    .motorcycle-sections .info-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .section-divider-container {
        margin: 18px 0 36px 0;
    }

    .section-divider-text {
        font-size: 1rem;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .motorcycle-sections {
        gap: 16px;
    }

    .section-divider-container {
        margin: 14px 0 28px 0;
    }

    .section-divider-text {
        font-size: 0.95rem;
        padding: 0 12px;
    }
}
