.site-logo img {
    width: 200px;
    height: auto;
}
.mobile-logo img {
    width: 200px;
    height: auto;
}
/* Top of page */
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a {
    color: #ffffff;
}

/* After scrolling */
.header-area.homepage1.sticky .header-elements .main-menu ul li a {
    color: #3471b8;
}
/* Solid filled header bar (where the logo is), top-of-page state only.
   The theme's header is a transparent, absolutely-positioned overlay with a
   translucent rounded "pill" (.header-elements-1) inside it — that's why it
   read as light grey. Fill the full-width bar with a solid #888988 (like the
   sticky header's solid look) and flatten the pill so there's no lighter
   rounded shape on top. Scoped to :not(.sticky) so the scrolled/sticky header
   keeps its own blue links and transparent background untouched. */
.homepage1-body .header-area.homepage1:not(.sticky) {
    background: #888988 !important;
}
.header-area.homepage1:not(.sticky) .header-elements.header-elements-1 {
    background: transparent !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}
/* XKD Quiz -ze */
.quiz-wrapper {
    background: linear-gradient(135deg, #eaf6ff, #f8fcff);
    padding: 2.5rem;
    border-radius: 20px;
}

.quiz-card {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}
a {
    color: #1a73e8; /* logo blue - replace if your exact blue is different */
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
    color: #1558b0; /* slightly darker blue on hover */
    text-decoration: none;
}