/* Fonts CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div,
a,
li,
td,
th {
    font-family: 'Inter', sans-serif !important;
}

p {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    margin-bottom: 1.5em;
}

.main-title h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
}

.block h3,
.banner-item h3 {
    font-weight: 600;
}

/* Utility to override legacy font tag styles if they persist */
font {
    font-family: 'Inter', sans-serif !important;
    font-size: inherit !important;
    color: inherit !important;
}

.text-muted {
    color: #6c757d !important;
}