.sa-layout-wrapper-aaaa4d75 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    width: 100%;
}

.sa-circular-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    min-height: 480px;
}

.sa-circle-container {
    position: relative;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 25px rgba(255,255,255,0.9), inset 0 0 15px rgba(255,255,255,0.9);
    overflow: hidden;
    z-index: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sa-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Points Placement styling for desktop using absolute mapping relative to 380px circle */
.sa-points-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.sa-point-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    z-index: 5;
    width: 250px; /* Enforced absolute width to allow alignment container space to align! */
}

.sa-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #b38f54;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.sa-label {
    font-size: 17px;
    font-weight: 500;
    font-family: serif;
    white-space: nowrap;
    flex-grow: 1; /* Allows alignment controls to space correctly inside flex item */
}

/* Positions mapping (circularly around a central point) */
/* Left side points */
.sa-pos-left-top {
    left: 10%;
    top: 15%;
}
.sa-pos-left-mid {
    left: 3%;
    top: 45%;
}
.sa-pos-left-low {
    left: 10%;
    top: 75%;
}

/* Right side points */
.sa-pos-right-top {
    right: 10%;
    top: 15%;
    flex-direction: row;
}
.sa-pos-right-mid {
    right: 3%;
    top: 45%;
    flex-direction: row;
}
.sa-pos-right-low {
    right: 10%;
    top: 75%;
    flex-direction: row;
}

/* Bottom center point */
.sa-pos-bottom-mid {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
    gap: 6px;
    width: auto; /* Bottom item doesn't need rigid absolute desktop width */
}

/* Specific offsets for overlapping classes to render beautiful image match */
.sa-item-2 { /* Left low - Depression */
    left: 4%;
    top: 62%;
}
.sa-item-3 { /* Left low 2 - Diabetes */
    left: 16%;
    top: 85%;
}
.sa-item-6 { /* Right low - Stroke */
    right: 4%;
    top: 62%;
}
.sa-item-7 { /* Right low 2 - Memory Loss */
    right: 16%;
    top: 85%;
}

/* Mobile Responsiveness: Map to list/grid layout on tablets & mobile */
@media (max-width: 767px) {
    .sa-circular-container {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .sa-circle-container {
        width: 260px !important;
        height: 260px !important;
    }
    
    .sa-points-outer {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
    }

    .sa-point-item {
        position: static !important;
        transform: none !important;
        justify-content: center !important;
        flex-direction: row !important;
        gap: 10px;
        text-align: center;
        width: auto !important;
    }
    
    .sa-label {
        font-size: 15px;
        white-space: normal;
    }
}
