section {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem;
    border-radius: 10px;
    max-width: 90%;
}



section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

section p {
    line-height: 1.6;
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1rem;
}

section ul {
    list-style: none;
    padding-left: 0;
}

section ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

section ul li::before {
    list-style: none;
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}