/* Global Styles */
:root {
    --navy: #242E3F;
    --navy-dark: #1a2230;
    --gold: #d6b56e;
    --grey: #454A53;
    --text-color: #606060;
    --heading-color: #202020;
    --light-text: #f4f4f4;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
    --font-main: 'Heebo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--navy);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-grey {
    background-color: var(--grey);
    color: #fff;
}

.bg-navy {
    background-color: var(--navy);
    color: #fff;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light p {
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 0;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--gold);
    color: #fff;
}

.btn-primary:hover {
    background-color: #c0a055;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--navy);
    color: var(--navy);
    margin-right: 15px;
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: #fff;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--gold);
}

.cta-btn-nav {
    background-color: var(--gold);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 0;
}

.cta-btn-nav:hover {
    background-color: var(--navy) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section - Split Layout */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.hero-text .subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: var(--gold);
    color: #fff;
    padding: 20px 30px;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: zoomIn 1s ease-out;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Practice Areas - Dark Theme */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.bg-grey .card:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.bg-grey .card:hover h3,
.bg-grey .card:hover p,
.bg-grey .card:hover .card-icon {
    color: #fff;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    transition: var(--transition);
}

.card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.card p {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--gold);
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.contact-details .icon {
    margin-left: 15px;
    color: var(--gold);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #1a2230;
    color: #8892b0;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-weight: bold;
}

.sticky-btn.call {
    background-color: var(--navy);
}

.sticky-btn.whatsapp {
    background-color: #25D366;
}

/* Page Header (Sub-pages) */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 46, 63, 0.8);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {}

.faq-item h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--gold);
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.contact-details .icon {
    margin-left: 15px;
    color: var(--gold);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #1a2230;
    color: #8892b0;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-weight: bold;
}

.sticky-btn.call {
    background-color: var(--navy);
}

.sticky-btn.whatsapp {
    background-color: #25D366;
}

/* Page Header (Sub-pages) */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 46, 63, 0.8);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .experience-badge {
        left: 20px;
        top: auto;
        bottom: 20px;
        padding: 10px 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 5px 10px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--navy);
    color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 100px;
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    text-align: right;
}

.lang-option:hover,
.lang-option.active {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 46, 63, 0.8);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .experience-badge {
        left: 20px;
        top: auto;
        bottom: 20px;
        padding: 10px 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 5px 10px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--navy);
    color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 100px;
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    text-align: right;
}

.lang-option:hover,
.lang-option.active {
    background-color: #f9f9f9;
    color: var(--gold);
}

@media (max-width: 768px) {

    .accessibility-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .accessibility-header h3 {
        margin: 0;
        font-size: 18px;
        color: #333;
    }

    .close-acc-btn {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #666;
    }

    .acc-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .acc-btn {
        padding: 10px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        transition: all 0.2s;
        color: #333;
    }

    .acc-btn:hover,
    .acc-btn.active {
        background: #0056b3;
        color: white;
        border-color: #0056b3;
    }

    .acc-btn i {
        font-size: 18px;
    }

    /* Accessibility States */
    body.grayscale-mode {
        filter: grayscale(100%);
    }

    body.high-contrast {
        background-color: #000 !important;
        color: #fff !important;
    }

    body.high-contrast * {
        background-color: #000 !important;
        color: #fff !important;
        border-color: #fff !important;
    }

    body.high-contrast img {
        filter: grayscale(100%) contrast(120%);
    }

    body.large-font {
        font-size: 120% !important;
    }

    .experience-badge {
        left: 20px;
        top: auto;
        bottom: 20px;
        padding: 10px 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 5px 10px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--navy);
    color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 100px;
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    text-align: right;
}

.lang-option:hover,
.lang-option.active {
    background-color: #f9f9f9;
    color: var(--gold);
}

@media (max-width: 768px) {

    .accessibility-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .accessibility-header h3 {
        margin: 0;
        font-size: 18px;
        color: #333;
    }

    .close-acc-btn {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #666;
    }

    .acc-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .acc-btn {
        padding: 10px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        transition: all 0.2s;
        color: #333;
    }

    .acc-btn:hover,
    .acc-btn.active {
        background: #0056b3;
        color: white;
        border-color: #0056b3;
    }

    .acc-btn i {
        font-size: 18px;
    }

    /* Accessibility States */
    body.grayscale-mode {
        filter: grayscale(100%);
    }

    body.high-contrast {
        background-color: #000 !important;
        color: #fff !important;
    }

    body.high-contrast * {
        background-color: #000 !important;
        color: #fff !important;
        border-color: #fff !important;
    }

    body.high-contrast img {
        filter: grayscale(100%) contrast(120%);
    }

    body.large-font {
        font-size: 120% !important;
    }

    body.readable-font {
        font-family: Arial, Helvetica, sans-serif !important;
    }

    body.links-highlight a {
        text-decoration: underline !important;
        background-color: yellow !important;
        color: black !important;
    }
}

/* Accessibility Button & Menu */
.accessibility-btn {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999 !important;
    /* Max Z-Index */
    transition: transform 0.3s ease;
    border: 2px solid white;
    /* Visibility aid */
}

.accessibility-btn:hover {
    transform: scale(1.1);
    background-color: #004494;
}

.accessibility-menu {
    position: fixed;
    top: 180px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 280px;
    display: none;
    z-index: 99999 !important;
    border: 1px solid #eee;
}

.accessibility-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}