.page-header {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}


.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.terms-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
}

.section-title {
    color: var(--heading-color);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
    padding-bottom: 10px !important;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background-color: var(--accent-color);
    margin-right: 15px;
    border-radius: 3px;
}

.meta-box {
    background-color: rgba(var(--accent-color-rgb), 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 15px 25px;
    border-radius: 4px;
    margin-bottom: 40px;
    display: inline-block;
}

.content-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.custom-list {
    padding-left: 0;
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0px;
    color: #555;
    line-height: 1.6;
}

.custom-list li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1.4;
}

.list-unstyled li {
    margin-bottom: 10px;
    color: #555;
}

.list-unstyled strong {
    color: var(--heading-color);
}

    /* Page Title styling if not global */
.page-title {
    background-color: #f9f9f9;
    padding: 40px 0;
    margin-bottom: 40px;
}

/* About Section */
.about .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about .icon-box i {
    font-size: 24px;
    color: var(--accent-color);
}

/* Mission & Vision */
.mission-vision .card-item {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}
.mission-vision .card-item:hover {
    transform: translateY(-5px);
}
.mission-vision .icon-circle {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), white 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-vision .icon-circle i {
    font-size: 28px;
    color: var(--accent-color);
}

/* Values */
.values .value-item {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    height: 100%;
    transition: 0.3s;
}
.values .value-item:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}
.values .value-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}
.values .value-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
}