body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
}

.containerp {
    margin: 0 auto;
    padding: 65px 20px;
    max-width: 1200px;
}

h1 {
    font-size: 36px;
    color: #133E87;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-in-out;
}

h2, h3 {
    color: #2980b9;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 40px;
    animation: slideIn 2s ease-in-out;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

p {
    font-size: 19px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    animation: slideIn 2s ease-in-out;    
    font-weight: bold;

}

ul {
    font-size: 19px;
    line-height: 1.8;
    color: #000000;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

#Who ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-weight: bold;
}

#Who ul li:before {
    content: "\f058"; /* Font Awesome checkmark icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #133e87;
    font-size: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Button Styling (optional) */
button {
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e67e22;
}