.about-highlight-section {
    background-color: #007741;
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.about-highlight-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}
.about-highlight-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    height: 100%;
}
.about-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.about-highlight-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.about-highlight-number {
    font-size: 1.5rem;
    font-weight: 600;
}
.about-highlight-text {
    font-size: 1rem;
}



.about-section {
    padding: 60px 15px;
}
.about-heading {
    font-weight: 700;
    margin-bottom: 20px;
}
.about-text {
    font-size: 16px;
    color: #333;
}
.about-feature-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    border-bottom: 2px solid #047857;
    padding: 20px;
    transition: background-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.about-feature-card:hover {
    background-color: #f5fdfb;
}
.about-feature-icon {
    font-size: 30px;
    color: #10b981;
    margin-bottom: 10px;
}
.about-feature-title {
    font-weight: 600;
    margin-bottom: 5px;
}
.about-feature-text {
    font-size: 14px;
    color: #555;
}


.about-what-set-section {
    background: linear-gradient(to bottom, #f9f9f9, #ebf5f0);
    padding: 60px 15px;
    text-align: center;
}
.about-what-set-feature-card {
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}
.about-what-set-feature-card:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}
.about-what-set-feature-icon {
    font-size: 40px;
    color: #10b981;
    margin-bottom: 20px;
}

.about-vision-mission-box {
    background-color: #047857;
    border-radius: 10px;
    color: #fff;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.about-vision-mission-box:hover {
    transform: translateY(-5px);
}
.about-vision-mission-box p{
	color: #fff;
}
.about-vision-icon {
    font-size: 32px;
    margin-right: 10px;
    color: #d1fae5;
}
.about-bottom-icon-text {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-weight: 500;
}


.about-promise-section {
    background: linear-gradient(to right, #f9f9f9, #ebf5f0);
    padding: 60px 20px;
}
.about-promise-heading {
    text-align: center;
    margin-bottom: 50px;
}
.about-promise-heading h3 {
    font-weight: bold;
    font-size: 28px;
    color: #047857;
}
.about-promise-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.about-promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.about-promise-icon {
    font-size: 30px;
    color: #047857;
    margin-bottom: 15px;
}
.about-promise-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}
.about-promise-card p {
    font-size: 15px;
    color: #444;
}

@media (max-width: 767.98px) {
    .about-divider {
    	border-left: none;
    	border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .about-what-set-feature-card {
        margin-bottom: 20px;
    }
    .about-vision-mission-box {
        margin-bottom: 20px;
    }
}


