.hero-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #17365d 0%, #335c81 55%, #8b5e3c 100%);
    border-radius: 1rem;
    color: white;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-section p {
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 52rem;
    opacity: 0.9;
}

.hero-section .eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.hero-actions a {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: white;
    font-size: 0.9rem;
    font-weight: 650;
    padding: 0.65rem 1rem;
    text-decoration: none;
}

.hero-actions .primary-action {
    background: white;
    color: #17365d;
}

.hero-actions a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-actions .primary-action:hover {
    background: #f0f4f8;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.card {
    background: var(--pst-color-background);
    border: 1px solid var(--pst-color-border);
    border-radius: 0.75rem;
    box-shadow: 0 0.4rem 1.2rem rgba(23, 54, 93, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.8rem 1.8rem rgba(23, 54, 93, 0.14);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--pst-color-border);
    background: color-mix(in srgb, var(--pst-color-background) 92%, #335c81);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--pst-color-text-base);
}

.card-content {
    padding: 1.5rem;
}

.card-description {
    color: var(--pst-color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2.75rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .card-header,
    .card-content {
        padding: 1rem;
    }
}
