/* CSS Variables - Creative Purple/Yellow Theme */
:root {
    --primary-color: #6A0DAD;
    /* Deep Purple */
    --primary-light: #9B59B6;
    --primary-dark: #4A0080;
    --accent-color: #FFD700;
    /* Gold/Yellow */
    --accent-hover: #E6C200;

    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #e0e0e0;
    --text-white: #FFFFFF;

    --bg-light: #FFFFFF;
    --bg-off-white: #F9F9FB;
    --bg-dark: #2C2C2C;
    --bg-gradient: linear-gradient(135deg, #FFD700 0%, #6A0DAD 100%);
    /* Yellow to Purple */

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-neon: 0 0 20px rgba(106, 13, 173, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 35px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.5);
}

.section {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--bg-off-white);
}

.text-center {
    text-align: center;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid white;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
    padding: 10px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Language Switcher */
.language-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.current-lang-flag {
    font-size: 1.2rem;
}

.lang-menu {
    min-width: 160px;
}

.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.lang-menu .flag {
    font-size: 1.2rem;
}

/* Hide Google Translate Toolbar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Fix Google Translate changing font size */
font {
    background-color: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background: var(--bg-off-white);
    color: var(--primary-color);
}

/* Hero Section (Parallax & Animated Pattern) */
.hero-parallax {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-image: none;
    color: var(--text-dark);
    text-align: center;
}

.hero-overlay {
    display: none;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    max-width: 900px;
    /* Transparent Box as requested */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.sub-headline {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    text-shadow: none;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-subtext {
        margin: 0 auto 40px;
    }

    .hero-headline {
        font-size: 3rem;
    }
}

.badge-wrapper {
    margin-bottom: 40px;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

/* Section Header (Image Background) */
.section-header-img {
    position: relative;
    padding: 120px 0;
    background-image: url('../assets/images/about_img.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(106, 13, 173, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.section-header-img .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-grid-structure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
    border: none;
}

.about-logo-img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.divider {
    height: 3px;
    width: 100px;
    background: var(--accent-color);
    margin: 30px 0;
}

.icon-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
    border-left: 4px solid var(--primary-color);
}

.icon-list li:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-color);
}

/* Timeline Vertical */
.timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background: var(--bg-gradient);
    /* Yellow-Purple Gradient Line */
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
    z-index: 1;
}

.timeline-dot {
    position: absolute;
    left: 6px;
    top: 25px;
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    border-color: var(--accent-color);
}

.timeline-content {
    padding: 30px;
    border-radius: var(--radius-md);
    transition: transform 0.3s;
    background: rgba(255, 255, 255, 0.9);
    /* Glass effect */
    backdrop-filter: blur(12px);
    border: 1px solid white;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-top: 4px solid var(--accent-color);
}

.timeline-content h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: linear-gradient(135deg, #045389 0%, #033a61 100%);
    /* Deep Blue from reference */
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.footer-eu-logo img {
    max-width: 250px;
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
}

/* Consortium Page Styles */
.small-header {
    padding: 140px 0 60px;
    /* Increase top padding for fixed nav */
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    background-color: var(--bg-off-white);
}

.small-header .section-overlay {
    display: none;
}

.small-header .page-title {
    color: var(--primary-dark);
    text-shadow: none;
    display: inline-block;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.partner-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    /* Enhanced shadow */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.15);
    border-color: var(--primary-color);
}

.partner-img-wrapper {
    height: 250px;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
}

.partner-img-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-img-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.partner-card:hover .partner-img-wrapper img {
    transform: scale(1.05);
}

.partner-info {
    padding: 25px;
    text-align: center;
    background: var(--bg-off-white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}



/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger .bar {
        display: block;
        width: 30px;
        height: 3px;
        margin: 6px auto;
        background-color: var(--primary-dark);
        transition: 0.3s;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.4s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .about-grid-structure {
        grid-template-columns: 1fr;
    }

    .sub-headline {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-eu-logo {
        display: flex;
        justify-content: center;
    }
}

/* Coming Soon Styles */
.coming-soon-wrapper {
    padding: 60px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(106, 13, 173, 0.15);
    border: 2px solid var(--accent-color);
    display: inline-block;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.coming-soon-text {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-text 3s infinite ease-in-out;
}

.coming-soon-sub {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

@keyframes pulse-text {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Blog/News Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.news-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img-wrapper {
    height: 220px;
    background: var(--bg-off-white);
    position: relative;
    overflow: hidden;
    display: block;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.3;
}

.news-content h3 a {
    color: var(--primary-dark);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}


/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 20px;
}

.contact-email-box {
    background: var(--bg-off-white);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.contact-email-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.contact-email-link:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Disclaimer Box (News Posts) */
.disclaimer-box {
    margin-top: 30px;
    padding: 20px;
    background: #f0f0f0;
    /* Solid light grey instead of rgba */
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: #000000 !important;
    /* Force Black */
    opacity: 1 !important;
    border-left: 4px solid var(--accent-color);
    font-weight: 500;
}


/* Outcomes List Buttons */
.outcomes-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    /* Text takes space, button takes auto */
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
    padding-right: 10px;
    /* continued padding */
}

.btn-sm {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-sm:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Playground Background Animation */
#playground-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    /* Changed from -1 to 0 to sit on top of body bg */
    background: radial-gradient(circle at center, #ffffff 0%, #f0f0f5 100%);
    overflow: hidden;
}

/* Ensure content is above background */
main,
nav,
footer,
header {
    position: relative;
    z-index: 1;
}

.play-item {
    position: absolute;
    background-image: url('../assets/images/corn_pattern.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    /* Increased opacity for visibility */
    filter: hue-rotate(170deg);
    border-radius: 50%;
    pointer-events: none;
}

.item-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: play-float 8s infinite ease-in-out;
}

.item-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation: play-float 12s infinite ease-in-out reverse;
}

.item-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 50%;
    opacity: 0.1;
    animation: play-float 10s infinite ease-in-out 2s;
}

.item-4 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation: play-float 9s infinite ease-in-out 1s;
}

.item-5 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 90%;
    animation: play-float 14s infinite ease-in-out;
}

.item-6 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 5%;
    animation: play-float 11s infinite ease-in-out 3s;
}

@keyframes play-float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-25px) rotate(10deg) scale(1.1);
    }

    100% {
        transform: translateY(0) rotate(-5deg) scale(1);
    }
}

/* Ensure Transparency and Readability */
.hero-content-centered {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section {
    background-color: transparent !important;
    background-image: none !important;
}

/* Google Translate Hidden Container */
.google-translate-hidden {
    position: absolute;
    top: -1000px;
    left: -1000px;
    visibility: hidden;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Accessibility Widget */
#a11y-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    font-family: 'Outfit', sans-serif;
}

#a11y-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s;
}

#a11y-toggle:hover {
    transform: scale(1.1);
}

#a11y-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 200px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

#a11y-menu.active {
    display: flex;
}

.a11y-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
}

.a11y-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.a11y-btn:hover {
    background: #e0e0e0;
}

.a11y-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Accessibility Modes */
.a11y-large-text {
    font-size: 110% !important;
}

.a11y-high-contrast {
    filter: contrast(150%);
    background-color: white !important;
    color: black !important;
}

.a11y-high-contrast * {
    background-color: white !important;
    color: black !important;
    border-color: black !important;
}

.a11y-high-contrast img {
    filter: grayscale(100%);
}

.a11y-grayscale {
    filter: grayscale(100%);
}

.a11y-links-highlight a {
    text-decoration: underline !important;
    background-color: yellow !important;
    color: black !important;
}