:root {
    --primary: #0077B6;
    --secondary: #90E0EF;
    --dark: #023E8A;
    --light: #F8F9FA;
    --success-soft: #d4edda;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fcfcfc;
}

.vud-sticky-wrapper {
    background: #ffffff;
    border-bottom: 2px solid var(--primary);
    z-index: 1060;
    width: 100%;
    position: relative;
    overflow: hidden; /* Prevent overflow issues from widget */
}

#vac6f0118e8d {
    min-height: 80px;
    display: block;
    width: 100%;
}

#vac6f0118e8d iframe {
    width: 100% !important;
    border: none !important;
}

.main-header {
    z-index: 1050;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.bg-success-soft {
    background-color: var(--success-soft);
    color: #155724;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}