@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter_18pt-Regular.woff2') format('woff2'),
         url('fonts/Inter_18pt-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter_18pt-Italic.woff2') format('woff2'),
         url('fonts/Inter_18pt-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Inter_18pt-SemiBold.woff2') format('woff2'),
         url('fonts/Inter_18pt-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Inter_18pt-SemiBoldItalic.woff2') format('woff2'),
         url('fonts/Inter_18pt-SemiBoldItalic.woff') format('woff');
}

body {
    font-family: 'Inter', sans-serif;
}

.jinr-blue {
    color: #004080;
}

.bg-jinr-blue {
    background-color: #004080;
}

.hero-bg {
    background-image: linear-gradient(to bottom, transparent 10%, #ffffffaa 40%, #ffffffaa 60%, transparent 90%), url('dmsbg4_crop.png');
    background-size: cover;
    background-position: center top;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content.active {
    max-height: 1000px;
}