body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8; /* Light blue-gray background */
    color: #333;
}
/* Custom styles for elements not easily covered by direct Tailwind classes */
.section-title {
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4299e1; /* blue-500 */
    border-radius: 9999px; /* rounded-full */
}
.header-bg {
    background: linear-gradient(135deg, #4299e1, #3182ce); /* blue-500 to blue-700 */
}
.footer-bg {
    background-color: #2d3748; /* gray-800 */
    color: #e2e8f0; /* gray-200 */
}
.resource-person-img {
    border: 4px solid #4299e1;
}   