
.styles-content {
    display: flex;
    flex-direction: column; /* stack vertically */
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem;
    margin-top: 6rem;
}

.styles-text-box {
    width: 60%;
    font-family: 'Aileron', sans-serif;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #222; /* dark gray / almost black */
    text-align: justify;
    margin: 0 auto;
}

.psi-image img {
    width: 50%;
    margin: 2rem auto;
    display: block;
}

.styles-content .impact-heading {
    margin-bottom: 2rem; /* adjust the value as needed */
}

.dimensions .impact-heading {
    font-size: 3rem;
}

.circle-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap; /* wrap on small screens */
}

.circle {
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 2rem;
    width: 25vw;   /* base size for center circle */
    height: 25vw;
    flex-shrink: 0;
    background-color: gray;
}

.circle-left,
.circle-right {
    width: 20vw;   /* 80% of center circle */
    height: 20vw;
    z-index: 2; 
}

.learning .circle-center {
    background-color: rgb(44, 140, 203); /* example central color */
}

.learning .circle-left {
    background-color: rgb(19, 83, 138);
    margin-right: -50px;
}

.learning .circle-right {
    background-color: rgb(54, 183, 218);
    margin-left: -50px;
}

.decision-making .circle-center {
    background-color: rgb(177, 76, 76); /* example central color */
}

.decision-making .circle-left {
    background-color: rgb(120, 48, 53);
    margin-right: -50px;
}

.decision-making .circle-right {
    background-color: rgb(177, 139, 139);
    margin-left: -50px;
}

.fulfilment .circle-center {
    background-color: rgb(144, 156, 47); /* example central color */
}

.fulfilment .circle-left {
    background-color: rgb(57, 76, 24);
    margin-right: -50px;
}

.fulfilment .circle-right {
    background-color: rgb(170, 177, 139);
    margin-left: -50px;
}

.decision-making .impact-heading {
    margin-top: 4rem;
}

.fulfilment .impact-heading {
    margin-top: 4rem;
}

.circle-text {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Aileron', sans-serif;
}

.circle-hover-text {
    display: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem;
}

/* Hover effect */
.circle:hover {
    transform: scale(1.1);
    z-index: 5;
    opacity: 0.97;
}

.circle:hover .circle-text {
    display: none;
}

.circle:hover .circle-hover-text {
    display: block;
}


