.section-background{
	background: url('../images/about.png');
}
.about{
	background: #f3f3f3;
}
.about-detail{
	font-size: 14px;
	color: #999;
	font-weight: 200;
	top: 50%;
	transform: translateY(50%);
	/*position: absolute;*/
	/*padding-left: 40px;*/
    /*line-height: 22px;*/
}
.section-item-title, .section-item-detail{
	text-align: center;
}
.team{
	background: #ededed;
}
.team-item{
	background: #f3f3f3;
	margin-bottom: 50px;
	text-align: center;
}
.team-img{
	width: 100%;
}
.team-item-name{
	font-size: 14px;
	margin-bottom: 0px;
	padding-top: 20px;
}
.team-item-id{
	color: #a3a2a2;
	font-size: 11px;
	text-transform: uppercase;
	padding-bottom: 30px;
}
/* Apply consistent bottom margin to all content rows in the .about section */
.about .row {
    margin-bottom: 30px; /* Adjust this value (e.g., 20px, 30px, 40px) to set the desired space */
}
/* --- Equal Height Columns & White Background Card --- */

/* 1. Apply consistent bottom margin to all module rows (Fixes the uneven spacing issue) */
.about .row {
    margin-bottom: 30px; /* Adjust this value for desired spacing between rows */
}

/* 2. Use Flexbox to make columns equal height, only on desktop (992px and up) */
@media (min-width: 992px) {
    .module-row {
        display: flex;
        /* Aligns the content and image to the top of the row */
        align-items: flex-start; 
        /* Ensures the columns inside the row take up 100% of the row's height */
    }
    
    .module-row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}
/* --- Styling for the New Additional Modules Section --- */

.additional-modules {
    margin-top: 40px; /* Space above the section */
    margin-bottom: 50px; /* Space below the section before the next content block */
    /* Removed padding: 0 15px; */
}

.additional-title {
    font-size: 24px;
    font-weight: 500;
    color: #4a148c; /* Example: Use the purple theme color */
    margin-bottom: 10px;
}

.additional-text {
    font-size: 16px;
    line-height: 1.6;
    color: #313131; /* Standard black/dark grey text color */
    /* Add a max width for readability if you want the text block to be narrow */
    /* max-width: 800px; */
    /* margin: 0 auto; */
}