/* Highlight the hero image and heading */
.hero-image {
    max-height: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}
.display-4 {
    font-weight: 700;
}

/* Card enhancements */
.card {
    border: none;
    border-radius: 16px;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.02);
}
.card-title {
    color: var(--color-orange-4);
    font-weight: 600;
}
.card-text {
    color: #000;
}
.blockquote {
    background: #f6f6f6;
    border-left: 5px solid var(--color-orange-4)    ;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}
.blockquote-footer {
    font-size: 1rem;
    margin-top: 1rem;
    color: #000;
}