* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #1e293b;
}

.page-wrap {
    min-height: 100vh;
    padding: 34px 20px 60px;
    display: flex;
    justify-content: center;
}

.home-box {
    width: 100%;
    max-width: 1320px;
}

.section-block {
    margin-bottom: 34px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 1.35rem;
    color: #081a3a;
    font-weight: 700;
    white-space: nowrap;
}

.section-line {
    height: 2px;
    background: linear-gradient(to right, #d3deef, transparent);
    flex: 1;
    border-radius: 999px;
}

.cards-grid.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 420px));
    gap: 22px;
}

.cards-grid.one-col {
    display: grid;
    grid-template-columns: minmax(280px, 420px);
    gap: 22px;
}

.home-card {
    display: block;
    width: 100%;
    text-decoration: none;
    background: #ffffff;
    border-radius: 26px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e2e8f0;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.card-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border: 1px solid #bfd7ff;
}

.home-card h3 {
    font-size: 1.15rem;
    color: #081a3a;
    margin-bottom: 12px;
    font-weight: 700;
}

.home-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5a6f8f;
    max-width: 290px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .cards-grid.two-col,
    .cards-grid.one-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .page-wrap {
        padding: 24px 16px 44px;
    }

    .section-heading h2 {
        font-size: 1.15rem;
    }

    .card-icon {
        width: 82px;
        height: 82px;
        font-size: 2rem;
    }

    .home-card {
        padding: 24px 18px;
        border-radius: 22px;
    }
}