/* ==========================
   ABOUT PAGE TEXT LAYOUT
   ========================== */

#about-us {
    max-width: 850px;
    text-align: left;
    margin: auto;
    padding: 10px;
}

#about-us h2 {
    text-align: center;
    margin-bottom: 30px;
}

#about-us h3 {
    margin-top: 40px;
}

#about-us p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

#about-us ul {
    margin: 20px 0;
    padding-left: 20px;
}

#about-us li {
    margin-bottom: 14px;
    line-height: 1.6;
}

#about-us li strong {
    color: var(--primary);
    font-weight: 600;
}

#about-us .about-us-groups{
    background-color: white; /* card background */
    max-width: 900px;        /* keeps line length comfortable */
    margin: 30px auto;       /* center horizontally + spacing */
    padding: 30px 40px;      /* internal spacing */
    border-radius: 12px;     /* rounded corners */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12); /* soft shadow */
    color: #333;             /* dark text */
}

#about-us .about-us-groups .about-us-button{
    background-color: var(--primary); /* card background */
    max-width: fit-content;        /* keeps line length comfortable */
    margin: 30px auto;       /* center horizontally + spacing */
    padding: 15px 15px;      /* internal spacing */
    border-radius: 12px;     /* rounded corners */
    color: #ffffff;             /* dark text */
    text-decoration-line: none;
}
/* Hover effect */
.about-us-groups .about-us-button:hover {
    background-color: #1f5fc4;   /* darker blue on hover */
    transform: translateY(-2px); /* slight lift on hover */
}