body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #e1dce5;
    position: relative;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6a0dad;
    z-index: 1001;
}

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

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

nav ul li a:hover {
    color: #6a0dad;
}

/* Responsive header */
@media (max-width: 768px) {
    .logo img {
        height: 25px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    nav.show {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li a {
        font-size: 16px;
        color: #6a0dad;
    }
}

/* Sección del equipo */
.team-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.team-section h1 {
    font-size: 2.5rem;
    color: #d365ee;
    margin-bottom: 20px;
}

.team-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.job-offers h2,
.why-join h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #6a0dad;
}

.job-offers ul {
    list-style: none;
    padding: 0;
}

.job-offers li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.job-offers li h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

.job-offers li p {
    font-size: 1rem;
    margin: 10px 0 20px;
    color: #666;
}

.job-offers li button {
    background-color: #d365ee;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.job-offers li button:hover {
    background-color: #b144c7;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}