@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: rgb(15, 0, 69);
    font-family: "Poppins";
    overflow-x: hidden;
}


.header {
    background-color: white;
    padding: clamp(10px, 2vw, 20px);
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2vw, 30px);
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: clamp(10px, 2vw, 25px);
    flex-wrap: wrap;
    justify-content: center;
}

.header nav a {
    text-decoration: none;
    color: black;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    white-space: nowrap;
}

.header nav img {
    width: clamp(50px, 6vw, 72px);
    height: auto;
    display: block;
}

.header a:hover {
    color: rgb(180, 180, 180);
}


.container {
    background-color: rgb(23, 5, 88);
    padding: clamp(20px, 5vw, 50px);
    margin: clamp(20px, 5vw, 60px) auto;
    max-width: 900px;
    width: 90%;
    border-radius: 30px;
    border: solid 1px rgb(46, 22, 134);
    box-sizing: border-box;
}

.wrapper {
    color: white;
}



.form {
    text-align: center;
}

.titre {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
}

.group {
    max-width: 500px;
    margin: 0 auto 20px auto;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-family: "Poppins";
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 8px rgb(180, 180, 180);
}



button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s;
    padding: 12px 30px;
    border-radius: 100px;
    background: rgb(44, 43, 102);
    border: 1px solid transparent;
    font-size: 16px;
    color: white;
    margin-top: 15px;
}

button:hover {
    background: rgb(89, 54, 209);
}



.info {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
}

.info div {
    background-color: rgb(28, 8, 99);
    padding: 20px;
    border-radius: 20px;
    border: solid 1px rgb(46, 22, 134);
    flex: 1 1 200px; 
    max-width: 260px;
    text-align: center;
    box-sizing: border-box;
}

.info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info button {
    margin-top: 0;
    width: 100%; 
}



.footer {
    background-color: white;
    color: black;
    padding: clamp(20px, 4vw, 40px) clamp(10px, 3vw, 20px);
    text-align: center;
    margin-top: clamp(30px, 6vw, 80px);
}

.footer-logo img {
    width: clamp(60px, 8vw, 90px);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 3vw, 30px);
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.6rem);
    transition: 0.3s;
}

.footer-links a:hover {
    color: rgb(180, 180, 180);
}

.footer p {
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    opacity: 0.8;
    color: black;
}