body {
    padding-top: 70px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hero-section {
    background: radial-gradient(circle at top left, #0d6efd, #6610f2);
    color: #fff;
    padding: 80px 0 60px;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}
.hero-badge {
    background-color: rgba(255,255,255,0.15);
    border-radius: 50rem;
    padding: .25rem .75rem;
    font-size: .8rem;
}
.card-hover {
    transition: transform .2s ease, box-shadow .2s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    color: #777;
}
.footer a {
    color: #0d6efd;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.social-icons a {
    margin: 0 6px;
    display: inline-block;
    font-size: 1.2rem;
}
.testimonial-quote {
    font-style: italic;
}
@media (max-width: 767px) {
    .hero-section {
        padding-top: 90px;
        text-align: center;
    }
}
