
.bg-purple-light {
    background-color: #f3eefc !important;
}

.border-purple {
    border-color: var(--primary-color) !important;
}

.section-title {
    font-weight: 600;
    color: #333;
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3eefc;
    border-radius: 50%;
    flex-shrink: 0;
}

.card {
    border-radius: 12px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* News card — no hover lift for static content */
.news-card {
    overflow: hidden;
}

.news-card:hover {
    transform: none;
}

.news-card .card-header {
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    padding: 0.9rem 1.25rem;
}

/* Welcome banner under the header */
.welcome-banner {
    background: linear-gradient(135deg, #f5f0ff 0%, #ece5fb 100%);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.welcome-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #7c3aed);
    color: #fff;
    border-radius: 50%;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.25);
}

.contact-item:hover .contact-icon {
    background-color: #e9dffc;
    transform: scale(1.05);
    transition: all 0.2s;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.lead {
    line-height: 1.6;
    font-size: 1.1rem;
}

.sticky-top {
    z-index: 1;
}
