
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}
body {
    background: #eef5ff;
    margin-bottom: 60px;
}

.hero-section {
    background: linear-gradient(180deg, #0d47a1, #1565c0);
    padding: 70px 20px 140px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .hero-section:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 140px;
        background: url('/images/city-skyline.png') center bottom / cover no-repeat;
        opacity: .25;
    }

.app-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: auto;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .15));
}

.logo {
    height: 110px;
}

.legal-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
    transition: .25s;
    min-height: 170px;
}

    .legal-card:hover {
        transform: translateY(-4px);
    }

.icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
}

.red {
    background: #ef4444;
}

.blue {
    background: #2563eb;
}

.green {
    background: #22c55e;
}

.orange {
    background: #f59e0b;
}

.arrow {
    margin-left: auto;
    font-size: 26px;
    color: #0d47a1;
}

.security-card,
.contact-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

    .security-card ul {
        line-height: 2;
        font-size: 18px;
    }

@media (max-width: 768px) {
    .app-logo {
        max-width: 280px;
    }

    .hero-section {
        padding-top: 35px;
    }
}
