/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-us-page {
    background: #ffffff;
}

.about-us-page .aboutus-vision-section {
    background: #ffffff;
}

.about-us-page #mission .aboutus-visual-card,
.about-us-page #vision .aboutus-visual-card,
.about-us-page #values .business-model-diagram {
    box-shadow: 0 0px 0px rgba(15, 23, 42, 0.12);
    border-radius: 24px;
}

.about-us-page .vision-point,
.about-us-page .aboutus-highlight-item {
    background: rgba(7, 143, 153, 0.08);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-us-page .aboutus-values-section {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.1);
}


/* Dot bullet used in about highlights (replaces FontAwesome check) */
.about-us-page .aboutus-highlight-item .dot-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #078f99; /* teal-ish brand color */
    display: inline-block;
    flex: 0 0 12px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

/* Slightly smaller dot on very small screens */
@media (max-width: 480px) {
    .about-us-page .aboutus-highlight-item .dot-bullet {
        width: 10px;
        height: 10px;
        flex: 0 0 10px;
    }
}

