/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
} 

/* Left-align paragraph text */
p {
    text-align: left;
}
/* Center class text*/
.center {
    text-align: center;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

/* Modern Link Style without Underline */
a.modern-link {
    text-decoration: none; /* Remove underline */
    color: #0066cc; /* Modern blue color */
    transition: color 0.3s; /* Smooth transition */
}

a.modern-link:hover {
    color: #002060; /* Dalantia blue color on hover */
}