/* Our Team Page Styles */
#team {
    background: rgba(255, 255, 255, 0.1);
    padding: 5vh 0;
    border-radius: 10px;
    width: 80%;
    margin: auto;
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
}

.team-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    width: 60%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

h2 {
    color: #f4b400;
    font-size: 1.5em;
}

p {
    font-size: 1.2em;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .team-card {
        width: 90%;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }
}
