/* General Policies Styling */
.policies-section {
    text-align: center;
    padding: 50px 20px;
    color: #ffffff;
    font-family: 'IBM Plex Mono', monospace;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.policies-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #dddddd;
}

.policies-content p {
    margin-bottom: 20px;
    text-align: justify;
    transition: transform 0.3s ease, color 0.3s ease;
}

.policies-content p:hover {
    transform: translateX(5px); /* Subtle hover animation */
    color: #ffffff;
}
