.story-so-far p {
    margin-bottom: 30px;
    color: var(--secondary-text-color);
	text-align: center;
}

.meet-the-team p {
	margin-bottom: 15px;
    color: var(--secondary-text-color);
	text-align: center;
}

/* Team Container */
.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

/* Individual Profile Cards */
.team-member {
    background: rgba(69, 69, 69, 0.2);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 350px;
    text-align: center;
}

/* Profile Images */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 10px;
}

/* Name & Roles */
.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Hover Effect */
.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }
}