
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Poppins', system-ui, sans-serif; background: #F5F5F5; color: #323949; min-height: 100vh; display: flex; flex-direction: column; }
    header { background: #144584; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .logo-text { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .06em; line-height: 1.3; }
    .logo-text span { display: block; font-size: 10px; font-weight: 600; color: #6BB96D; letter-spacing: .14em; margin-top: 2px; }
    .badge { background: #6BB96D; color: #fff; font-weight: 700; font-size: 11px; letter-spacing: .13em; padding: 7px 18px 7px 13px; border-radius: 0 9px 9px 0; }
    main { flex: 1; max-width: 860px; width: 100%; margin: 0 auto; padding: 56px 24px 80px; }
    h1 { font-size: 32px; font-weight: 700; color: #144584; margin-bottom: 8px; }
    .subtitle { font-size: 15px; font-weight: 600; color: #6BB96D; margin-bottom: 48px; }
    .cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 600px) { .cards { grid-template-columns: 1fr; } header { padding: 16px 20px; } main { padding: 36px 16px 60px; } h1 { font-size: 24px; } }
    .card { background: #fff; border-radius: 12px; padding: 28px 28px 24px; border: 1px solid #CDCDCD; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; transition: box-shadow .15s, border-color .15s; }
    .card:hover { border-color: #144584; box-shadow: 0 4px 20px rgba(20,69,132,.12); }
    .card-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .12em; padding: 4px 10px; border-radius: 20px; width: fit-content; }
    .card-tag.blue  { background: #EEF2FB; color: #144584; }
    .card-tag.green { background: #EAF3EA; color: #1a7d3c; }
    .card h2 { font-size: 20px; font-weight: 700; color: #144584; line-height: 1.25; }
    .card p { font-size: 13.5px; font-weight: 500; color: #323949; line-height: 1.55; flex: 1; }
    .card-arrow { font-size: 13px; font-weight: 700; color: #144584; margin-top: 4px; }
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: #144584; margin-bottom: 16px; }
    footer { background: #323949; color: #CDCDCD; font-size: 12px; font-weight: 500; padding: 18px 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
    footer a { color: #6BB96D; font-weight: 700; text-decoration: none; }