@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');


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


body {
    font-family: 'DM Sans', sans-serif;
    background: #fdfbf7;
    color: #2d2d2d;
    line-height: 1.6;
}


header {
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    width: 150px;
    height: auto;
}


.header-btn {
    text-decoration: none;
    color: #ffffff;
    background: #7c8d72;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}



.hero {
    min-height: 80vh;
    padding: 80px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #f4eee5;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    z-index: -1;
}



.label {
    display: inline-block;
    background: #edf1e9;
    color: #6f8065;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}



h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    max-width: 850px;
    margin: auto;
    line-height: 1.15;
    letter-spacing: -1px;
}



.intro {
    max-width: 650px;
    margin: 25px auto;
    font-size: 18px;
    color: #555;
}



.main-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #7c8d72;
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
}



section {
    padding: 80px 8%;
}



h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 45px;
}



.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}



.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}



.card span {
    color: #7c8d72;
    font-weight: 700;
}



.card h3 {
    margin: 15px 0;
    font-size: 22px;
}



.professionnelle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}



.text h2 {
    text-align: left;
}



.text p {
    color: #555;
    margin-bottom: 25px;
}



.text ul {
    list-style: none;
}


.text li {
    margin-bottom: 12px;
}


.text li::before {
    content: "✓";
    color: #7c8d72;
    margin-right: 10px;
}



.form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}



.form-box h3 {
    font-size: 25px;
    margin-bottom: 25px;
}



input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5dfd5;
    background: #fffdf9;
    border-radius: 12px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 15px;
}



label {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}



button {
    width: 100%;
    padding: 15px;
    background: #7c8d72;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}



.faq .question {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
}



.question h3 {
    margin-bottom: 10px;
}



footer {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 14px;
}




@media(max-width:900px){

    .cards {
        grid-template-columns: 1fr;
    }


    .professionnelle {
        grid-template-columns: 1fr;
    }


    header {
        padding: 20px 5%;
    }


    section {
        padding: 60px 5%;
    }


    h1 {
        font-size: 38px;
    }

}