
.about-us-container {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
}

.members-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.member-card {
    display: flex;
    background-color: #f9f9f9;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 300px;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* Makes the image circular */
    object-fit: cover;
    /* Ensures the image covers the area */
    border: 3px solid #fff;
    /* Optional: adds a border around the image */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: adds a subtle shadow to the image */
    margin-bottom: 15px;
}

.member-name {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 5px;
}

.member-role {
    font-size: 1rem;
    color: #007bff;
    /* Gives a distinct color to the role for emphasis */
    margin: 0;
}

.member-description {
    font-size: 0.9rem;
    color: #001489;
    margin: 0;
    padding: 10px;
    background-image: linear-gradient(transparent, white);
    border-radius: 10px;
}

.about-cards {
    display: flex;
    gap: 20px;
}

.about-us-pers-1,
.about-us-pers-2 {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
}

@media (max-width: 1000px) {

	.about-us-container {
		flex-direction: column;
		align-items: center;
	}

	.about-us-pers-1 {
		width: 95%;
	}


	.about-us-pers-2 {
		width: 95%;
	}
}