/* Importation des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Réinitialisation des styles par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles généraux */
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #061e32;
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
header {
    background: #061e32;
    padding: 20px 0;
    border-bottom: 1px solid hsl(207, 95%, 55%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: hsl(207, 95%, 55%);
}

.cta-btn {
    background: hsl(207, 95%, 55%);
    padding: 10px 20px;
    border-radius: 25px;
    color: #061e32;
    font-weight: 800;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: hsl(207, 97%, 45%);
}

/* Main container */
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    color: #061e32;
}

.form-container h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: hsl(207, 95%, 55%);
}

.form-container p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Sections du formulaire */
.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(207, 95%, 55%);
}

.form-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #061e32;
}

.form-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.form-section li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #061e32;
}

.form-section a {
    color: hsl(207, 95%, 55%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-section a:hover {
    color: hsl(207, 97%, 45%);
}

/* Footer */
footer {
    background: #061e32;
    padding: 40px 0;
    color: #ffffff;
    border-top: 1px solid hsl(207, 95%, 55%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-section p, .footer-section a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: hsl(207, 95%, 55%);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid hsl(207, 95%, 55%);
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    margin: 0 10px;
    color: hsl(207, 95%, 55%);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #061e32;
        padding: 20px;
        border-bottom: 1px solid hsl(207, 95%, 55%);
    }

    .nav-links.active {
        display: flex;
    }

    .form-container h1 {
        font-size: 28px;
    }

    .form-container p {
        font-size: 16px;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section p, .form-section li {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}