:root {
    --mi-blue: #3b4fe4;
    --mi-blue-dark: #243673;
    --mi-light: #f3f6fb;
    --mi-text: #2a3040;
    --mi-white: #ffffff;
    --mi-radius-md: 14px;
    --mi-navbar-from: rgba(11, 21, 51, 0.9);
    --mi-navbar-to: rgba(18, 33, 74, 0.88);
    --mi-hero-overlay-start: rgba(36, 54, 115, 0.78);
    --mi-hero-overlay-end: rgba(59, 79, 228, 0.35);
    --mi-shadow-soft: 0 20px 40px rgba(36, 54, 115, 0.2);
    --mi-shadow-strong: 0 4px 12px rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--mi-text);
    background: var(--mi-white);
}

h1,
h2,
h3,
.title,
.brand-name {
    font-family: 'Poppins', sans-serif;
}

.top-navbar {
    background: linear-gradient(90deg, var(--mi-navbar-from), var(--mi-navbar-to));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.top-navbar .navbar-item,
.top-navbar .brand-name,
.top-navbar .navbar-burger {
    color: var(--mi-white);
}

.brand-logo {
    max-height: 2.25rem !important;
    margin-right: 0.5rem;
}

.carousel-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 25px;
    height: 320px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s ease, transform 7s ease;
}

.carousel-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--mi-hero-overlay-start), var(--mi-hero-overlay-end));
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.hero-copy h1,
.hero-copy p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 0 3px rgba(38, 38, 38, 0.7));
}

.hero-copy .button {
    box-shadow: var(--mi-shadow-strong);
}

.section-title {
    color: var(--mi-blue-dark);
}

.column.is-4 {
    display: flex;
}

.column.is-4>.box,
.column.is-4>.notification {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alt-section {
    background: var(--mi-light);
}

.rounded-image {
    border-radius: var(--mi-radius-md);
    box-shadow: var(--mi-shadow-soft);
}

.promo-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    box-shadow: none;
}

.promo-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.promo-slide.is-active {
    opacity: 1;
}

.promo-slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo-slide-single>img {
    object-fit: contain;
    background: transparent;
}

.promo-slide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.35rem;
    padding: 0.35rem;
}

.site-footer {
    background: var(--mi-blue-dark);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.social-links a {
    color: var(--mi-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.contact-container {
    max-width: 760px;
}

@media (max-width: 768px) {
    .hero-copy {
        padding-top: 6rem;
    }

    .hero-copy .title {
        font-size: 2rem !important;
    }
}