/* Reset container to ensure balanced alignment */
.container.align-vertical {
    padding-top: 30px;
    margin: 0 auto;
    max-width: 90%;
}
/* Ensure row spacing and alignment */
.row {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
}

/* Team member styling for even distribution */
.team-2-member {
    text-align: center;
    margin-bottom: 20px;
}

.team-2-member .image-holder img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
}

/* Adjust columns to fix left-right disparity */
.col-md-4, .col-sm-6, .col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Remove unintended padding/margin globally */
body, html {
    margin: 0;
    padding: 0;
}

/* Adjust text alignment for better appearance */
.primary-font {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

.body-font {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400; /* SemiBold */
    color: black; /* Ensures text color remains white */
    font-size: 1rem; 
    text-align: left;
    margin-bottom: 15px;
}

/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {
    .primary-font {
        font-size: 2rem;
    }
    .body-font {
        font-size: 0.9rem;
    }
    .team-2-member {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .primary-font {
        font-size: 1.5rem;
    }
    .body-font {
        font-size: 0.8rem;
    }
    .team-2-member {
        margin-bottom: 30px;
    }
}