body {
    font-family: 'Arial', sans-serif;
    background-color: #2c003e;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #4b0082;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffccff;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
}

footer p {
    margin: 0;
    color: #ddd;
}

.section-bg-1 {
    background-color: #3d005b;
    padding: 60px 20px;
    text-align: center;
}

.section-bg-2 {
    background-color: #5a008f;
    padding: 60px 20px;
    text-align: center;
}

.pentest-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pentest-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.pentest-box:hover {
    transform: scale(1.05);
}

.solution-logo {
    width: 200px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

.solution ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: auto;
}

.solution ul li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

input, textarea {
    margin: 10px auto;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 80%;
    display: block;
}


button.btn {
    background-color: #7a00cc;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s;
}

button.btn:hover {
    background-color: #a200ff;
}

/* Section Qui sommes-nous */
        .founders {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .founder-card {
            background: #292952;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(138, 43, 226, 0.5);
            max-width: 300px;
            text-align: center;
        }

        .founder-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid #8a2be2;
            margin-bottom: 10px;
        }

        .founder-card h3 {
            margin: 10px 0;
            color: #8a2be2;
        }

        .founder-card p {
            font-size: 14px;
            color: #e0d7ff;
        }


        .solution {
            background: #292952;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0px 4px 10px rgba(138, 43, 226, 0.5);
            text-align: left;
        }

        .solution h3 {
            color: #8a2be2;
            margin-bottom: 10px;
        }

        .solution-logo {
            max-width: 100px;
            display: block;
            margin: 10px auto;
            border-radius: 10px;
            border: 2px solid #8a2be2;
        }



