body {
    color: #202124;
}

.hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 55%, #eef4ff 100%);
}

.hero-card,
.info-box,
.step {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.hero-card li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.section {
    padding: 80px 0;
}

.check-list {
    padding-left: 0;
    list-style: none;
}

.check-list li {
    margin-bottom: 10px;
}

.check-list li::before {
    content: "✓";
    color: #007bff;
    font-weight: bold;
    margin-right: 8px;
}

.step {
    height: 100%;
}

.step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 18px;
}

.cta {
    padding: 70px 0;
    background: #007bff;
    color: #fff;
}

.footer {
    padding: 30px 0;
    background: #111827;
    color: #d1d5db;
}

.footer a {
    color: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
}

.summary-price strong {
    font-size: 1.5rem;
}


.portal-logo-card {
    min-height: 120px;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #202124;
    transition: .2s ease;
}

.portal-logo-card:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}

.portal-logo-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}