.page-content {
    padding: 60px 0;
    color: var(--white);
}

.page-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.intro-box {
    color: var(--white);
    margin-bottom: 50px;
    text-align: left;
    /* Ändrat från centrerat till vänsterställt för bättre läsbarhet */
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    /* Mycket svag bakgrund för att rama in texten */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.staff-section {
    margin-bottom: 60px;
}

.staff-section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--white);
    border-bottom: 2px solid #ff9800;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.staff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.staff-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    max-width: 220px;
}

.staff-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.staff-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    display: block;
}

.staff-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-align: center;
}

.staff-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .intro-box {
        text-align: center;
    }

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

    .page-content h1 {
        font-size: 2.5rem;
    }
}