@font-face {
    font-family: 'Neue Machina';
    src: url('./neue-machina-free-for-personal-use/Neue_Machina/NeueMachina-Regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('./neue-machina-free-for-personal-use/Neue_Machina/NeueMachina-Light.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('./neue-machina-free-for-personal-use/Neue_Machina/NeueMachina-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #ffffff;
    line-height: 1.6;
    background: #f8f8f8;
    width: 100vw;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    /* La largeur = 100% de la fenêtre */
    overflow-x: hidden;
    /* Empêche le scroll horizontal */
    box-sizing: border-box;
    /* Inclut padding et border dans la largeur */
}

/* S'assurer que tous les éléments utilisent box-sizing */
*,
*::before,
*::after {
    box-sizing: inherit;
}



header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: #f8f8f8;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

header .content {
    position: relative;
    z-index: 2;
}

header h1 {
    font-size: 300px;
    margin-bottom: 1rem;
    color: black;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: black;
}

header a {
    background: #062af3;
    padding: 22px 45px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
    transition: transform 0.3s;
}

header a:hover {
    color: black;
    background: rgb(157, 253, 61);;
        transform: translateY(-5px);
}

h1, h2, h3,p {
    color: black;
    text-align: center;
        margin-bottom: 40px;
}

section {
    padding: 60px 5px;
    max-width: 1200px;
    margin: auto;
    background: #f8f8f8;
}

.features {
    height: 100vh;
    display: flex;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
    height: 200px;
    margin-left: 20px;
    width: 300px;
    justify-content: center;
}

.feature:hover {
    transform: translateY(-15px);
}

.feature h3 {
    margin-bottom: 10px;
    color: #000000;
}

.ver {
    color: rgb(157, 253, 61);
}

.bleu {
    color: #0000ff;
}

.why {
    padding-top: 50px;
    display: flex;
}

.text-div {
    flex: 1;
    padding: 20px;
    line-height: 1.6;
    color: rgb(216, 13, 13);
    justify-content: start;
}

.image-div img {
    border-radius: 30px;
}


.material-button {
    /* Basic styling */
    background-color: #0000ff;
    /* Primary color */
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 5px;
    /* Slightly rounded corners */
    font-family: 'Roboto', sans-serif;
    /* Material Design typography */
    font-size: 24px;
    text-transform: uppercase;
    /* Uppercase text */
    cursor: pointer;

    /* Elevation (shadow) */
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
        0px 4px 5px 0px rgba(0, 0, 0, 0.14),
        0px 1px 10px 0px rgba(0, 0, 0, 0.12);

    /* Transition for hover/focus effects */
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.material-button:hover {
    background-color: #3700B3;
    /* Darker shade on hover */
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
        0px 6px 10px 0px rgba(0, 0, 0, 0.14),
        0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.material-button:active {
    background-color: #3700B3;
    box-shadow: none;
}

.why-we {
    /* background: rgb(224, 242, 254); */
    background: #89BFD3;
    border-radius: 25px;
    padding: 15px;
}

.faq {

    height: 100vh;
    max-width: 800px;
    margin: 5px auto;
    padding: 20px;
    padding-top: 90px;
}

.faq h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #007bff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Ajuste selon contenu */
    opacity: 1;
    margin-top: 10px;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(90deg);
}

.faq-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* CSS */
.button-22 {
    align-items: center;
    appearance: button;
    background-color: #0276FF;
    border-radius: 8px;
    border-style: none;
    box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    font-family: "RM Neue", sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 10px 21px;
    text-align: center;
    text-transform: none;
    transition: color .13s ease-in-out, background .13s ease-in-out, opacity .13s ease-in-out, box-shadow .13s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-22:active {
    background-color: #006AE8;
}

.button-22:hover {
    background-color: #1C84FF;
}

.prix {
    margin-top: 50px;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: #f8f8f8;    
}

h1,h2 h3,h4,h5,h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: normal;
}

h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 800;
    font-style: normal;
}

p {
    font-family: 'Inter', sans-serif;
}

p strong {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: normal;
}

.section_titre {
    font-size: 2rem;
}

.grand_titre {
    font-size: 3rem;
}

.image-div {
    display: flex;
    justify-content: center;
    align-items: center;
}


.image_faq {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
