
/*---------------------------------------
     ABOUT PAGE ENHANCEMENTS
-----------------------------------------*/
.bg-gray { background-color: #f9f9f9; }
.padding-80 { padding: 80px 0; }

.sub-title {
    color: #147bd7;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}



.page-header h1{
    text-transform: uppercase;
}
/* PRICE Value Cards */
.value-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    height: 250px;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #147bd7;
}

.v-letter {
    font-size: 50px;
    font-weight: 900;
    color: rgba(20, 123, 215, 0.2);
    margin-bottom: -30px;
}

.value-card h3 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Governance & Lists */
.membership-badge {
    background: #147bd7;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 18px;
    margin-bottom: 40px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 600;
}

.check-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #147bd7;
}

.exp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.exp-grid span {
    background: #eee;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

/* Vision/Mission Box */
.vm-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid #147bd7;
}

.vm-item i {
    color: #147bd7;
    margin-right: 10px;
}

