/* Importação de fontes */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");

/* Variáveis CSS para Cores - Paleta Otimizada */
:root {
    /* Cores de destaque (botões, títulos, links) */
    --accent-blue: #4381A4; /* Usado para botões e links principais */
    --accent-pink: #7f3f52; /* Usado para destaque e seções especiais */

    /* Cores de fundo e texto */
    --background-dark: #254969; /* Fundo principal para seções escuras */
    --background-light: #F0F2F5; /* Fundo claro para seções alternadas */
    --background-super-light: #FAFAFA; /* Fundo mais claro para seções de conteúdo */

    /* Cores de texto, cabeçalhos e elementos neutros */
    --text-dark: #454545; /* Cinza Escuro para a maioria dos textos */
    --text-light: #FFFFFF; /* Texto branco para fundos escuros */
    --text-medium: #8c8a93; /* Cinza Claro para texto mais sutil */
    --border-color: #D3D3D3; /* Cinza para bordas */
    
    /* Cores para componentes específicos */
    --prize-box-bg: #454545; /* Fundo da caixa de prêmio */
    --prize-box-text: #F0F2F5; /* Texto da caixa de prêmio */
    --prize-box-heading: #4381A4; /* Título da caixa de prêmio */
    
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --base-font-size: 16px;
}

/* Reset e Estilos Globais */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
    scroll-behavior: smooth;
    font-size: var(--base-font-size);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-super-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 170px; /* AJUSTADO: Padding para acomodar o cabeçalho */
}

/* Helper Classes */
.text-justify { text-align: justify; }
.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.text-primary { color: var(--accent-blue); }
.fw-bold { font-weight: 700; }
.fs-1 { font-size: 2.2rem; }
.fs-2 { font-size: 1.8rem; }
.fs-3 { font-size: 1.5rem; }
.fs-4 { font-size: 1.3rem; }

/* Container Geral */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Seções */
section {
    padding: 50px 0;
    margin-bottom: 0;
}

section:nth-child(even) {
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--background-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.2rem; line-height: 1.2; }
h3 { font-size: 1.6rem; line-height: 1.3; }

/* Botões Globais */
.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    font-weight: 600;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--background-dark);
    border-color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    font-weight: 600;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #643142;
    border-color: #643142;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Componentes Específicos --- */
.accessibility-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1060;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--text-medium);
    height: 40px;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out;
    justify-content: center;
}
.accessibility-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.accessibility-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}
.accessibility-bar .btn-sm {
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.accessibility-bar .btn-outline-secondary,
.accessibility-bar .btn-outline-dark {
    background-color: var(--background-dark);
    color: var(--text-light);
    border-color: var(--background-dark);
}
.accessibility-bar .btn-outline-secondary:hover,
.accessibility-bar .btn-outline-dark:hover {
    background-color: var(--accent-blue);
    color: var(--text-light);
    border-color: var(--accent-blue);
}
.accessibility-bar .btn-danger {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
    color: var(--text-light);
}
.accessibility-bar .btn-danger:hover {
    background-color: #643142;
    border-color: #643142;
}

/* Scroll-to-top Arrow */
.arrow-up {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--background-dark);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px var(--shadow-medium);
    z-index: 1000;
    transition: all 0.3s ease;
}
.arrow-up:hover {
    background-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}
.arrow-up img {
    width: 20px;
    filter: invert(1);
}

/* Novo estilo para o cabeçalho com a logo */
.header-logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    background-color: var(--text-light);
    z-index: 1070;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-logo-container .logo-link img {
    max-width: 550px !important; /* AJUSTADO: Aumentado o tamanho máximo da logo */
    height: auto;
    transition: transform 0.3s ease;
}

.header-logo-container .logo-link img:hover {
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 105px; /* AJUSTADO: Posiciona a navbar mais próxima da logo */
    left: 0;
    width: 100%;
    background-color: var(--text-light);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1060;
    box-shadow: none; /* Removido a sombra para um visual mais limpo */
    border-top: 1px solid var(--border-color); /* Adicionado uma borda sutil */
}

.navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%2837, 73, 105%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}
.navbar-nav .nav-link:hover {
    color: var(--accent-blue);
    background-color: var(--background-light);
}
.navbar-nav .nav-link.active {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Carousel */
.carousel {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.5));
}

/* Hero/Presentation Section */
#presentation {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}
#presentation p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}
#presentation h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}
#presentation .presentation-cta {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
#presentation .presentation-cta:hover {
    background-color: var(--background-light);
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Links Section */
#quick-links-section {
    padding: 25px 0;
    background-color: var(--background-light);
    box-shadow: none;
}
.quick-link-item {
    background-color: transparent;
    color: var(--background-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-blue);
    white-space: nowrap;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-link-item i {
    margin-right: 6px;
    font-size: 1em;
    color: var(--accent-blue);
    transition: color 0.3s ease;
}
.quick-link-item:hover {
    background-color: var(--accent-blue);
    color: var(--text-light);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--shadow-medium);
}
.quick-link-item:hover i {
    color: var(--text-light);
}

/* Content Sections */
.content-section {
    padding: 50px 0;
    text-align: left;
    background-color: var(--background-super-light);
}
.content-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--background-dark);
}
.content-section h3 {
    text-align: left;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--accent-blue);
}
.content-section p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1rem;
}
.content-section p b {
    color: var(--accent-blue);
}

/* Da premiação Section (Prizes) */
#prizes .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#prizes .prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
#prizes .prize-item {
    background-color: var(--prize-box-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px var(--shadow-medium);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--prize-box-bg);
}
#prizes .prize-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-pink);
}
#prizes .prize-item h3 {
    color: var(--prize-box-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
}
#prizes .prize-item p {
    color: var(--prize-box-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}
#prizes .prize-item p b {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Regulamento Section (Rule) */
#rule {
    background-color: var(--accent-pink);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}
#rule .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#rule h2, #rule p {
    color: var(--text-light);
}
#rule h2 {
    font-size: 2rem;
}
#rule p {
    font-size: 1rem;
}
#rule .btn-light {
    background-color: var(--text-light);
    color: var(--background-dark);
    border: 2px solid var(--background-dark);
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
}
#rule .btn-light:hover {
    background-color: var(--background-light);
    color: var(--background-dark);
    border-color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 40px 0 15px;
}
footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
}
footer .footer-logo,
footer .footer-contact,
footer .footer-social {
    flex: 1;
    min-width: 250px;
    padding: 10px 20px;
}
footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
footer .footer-logo img {
    max-width: 180px;
    filter: brightness(0) invert(1);
}
footer h2 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: left;
}
footer .footer-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
footer .footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #f8f9fa;
}
footer .footer-contact ul li i {
    font-size: 1.1rem;
    margin-right: 8px;
    color: var(--accent-blue);
}
footer .footer-contact ul li a {
    color: #f8f9fa;
}
footer .footer-contact ul li a:hover {
    color: var(--accent-blue);
}
footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: flex-start;
}
footer .social-icons a {
    font-size: 1.4rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
footer .social-icons a:hover {
    color: var(--text-light);
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}
footer .copyright {
    margin-top: 25px;
    font-size: 0.75rem;
   color: #f8f9fa;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

/* Botão do WhatsApp (Padrão) */
.whatsapp-button-style {
    background-color: #25D366;
    color: #fff;
}
.whatsapp-button-style:hover {
    background-color: #128C7E;
}


/* --- Media Queries para Responsividade --- */

@media (max-width: 575.98px) {
    body { padding-top: 120px; } /* AJUSTADO: Padding para telas menores */
    .header-logo-container .logo-link img {
        max-width: 250px; /* Ajuste para telas pequenas */
    }
    .navbar { top: 70px; } /* AJUSTADO: Ajuste da posição da navbar */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
    .btn-primary, .btn-secondary, #rule .btn-light, #presentation .presentation-cta, #subscribe .btn-primary {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    .arrow-up {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    .arrow-up img { width: 18px; }
    #presentation h1 { font-size: 1.8rem; }
    #presentation p { font-size: 0.95rem; padding: 0 8px; }
    #quick-links-section .quick-link-item {
        width: 100%;
        padding: 7px 15px;
        font-size: 0.85rem;
    }
    .content-section h2 { font-size: 1.5rem; }
    .content-section h3 { font-size: 1.1rem; }
    #prizes .prize-item {
        padding: 15px;
        min-height: auto;
    }
    #prizes .prize-item h3 {
        font-size: 1.2rem;
    }
    #prizes .prize-item p {
        font-size: 0.9rem;
    }
    #prizes .prize-item p b {
        font-size: 1rem;
    }
    footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .footer-logo,
    footer .footer-contact,
    footer .footer-social {
        min-width: unset;
        width: 100%;
        padding: 10px 0;
    }
    footer .footer-logo img {
        max-width: 150px;
    }
    footer h2 {
        text-align: center;
    }
    footer .footer-social .social-icons {
        justify-content: center;
    }
    footer .footer-contact ul,
    footer .footer-contact ul li {
        text-align: center;
        justify-content: center;
    }
    footer .footer-contact ul li {
        margin-bottom: 5px;
    }
    footer .social-icons a {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    body { padding-top: 150px; }
    .header-logo-container .logo-link img {
        max-width: 300px;
    }
    .navbar { top: 90px; }
    .main-container { padding: 0 20px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    #presentation h1 { font-size: 2.2rem; }
    #quick-links-section .quick-link-item {
        width: auto;
        flex-grow: 1;
    }
    footer .footer-content {
        justify-content: space-around;
    }
    footer .footer-logo,
    footer .footer-contact,
    footer .footer-social {
        padding: 15px;
    }
    footer .footer-logo img {
        max-width: 160px;
    }
    footer h2, footer p, footer .social-icons {
        text-align: center;
        justify-content: center;
    }
    footer .footer-contact ul {
        text-align: center;
    }
    footer .footer-contact ul li {
        justify-content: center;
    }
    footer .social-icons a {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    body { padding-top: 150px; }
    .header-logo-container .logo-link img {
        max-width: 350px;
    }
    .navbar { top: 100px; }
    .main-container { padding: 0 30px; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
    #presentation h1 { font-size: 2.5rem; }
    #quick-links-section .quick-link-item {
        width: auto;
        flex-grow: 1;
    }
    footer .footer-content {
        justify-content: space-between;
        align-items: flex-start;
    }
    footer .footer-logo,
    footer .footer-contact,
    footer .footer-social {
        flex: 1;
        min-width: 200px;
    }
    footer h2, footer p, footer .social-icons {
        text-align: left;
        justify-content: flex-start;
    }
    footer .footer-logo {
        padding-top: 10px;
    }
    footer .footer-contact ul,
    footer .footer-contact ul li {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {
    body { padding-top: 150px; }
    .header-logo-container .logo-link img {
        max-width: 350px;
    }
    .navbar { top: 100px; }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    #presentation h1 { font-size: 2.5rem; }
    #quick-links-section .quick-links-container {
        flex-wrap: nowrap;
    }
    #quick-links-section .quick-link-item {
        width: auto;
        padding: 10px 25px;
    }
}

@media (min-width: 1200px) {
    .main-container { max-width: 1200px; padding: 0; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    #presentation h1 { font-size: 2.5rem; }
}

/* Estilos para Alto Contraste (high-contrast) */
body.high-contrast {
    background-color: #000 !important;
    color: #FFF !important;
}
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6,
body.high-contrast .navbar-nav .nav-link,
body.high-contrast .quick-link-item,
body.high-contrast footer h2,
body.high-contrast footer p,
body.high-contrast footer a {
    color: #FFFF00 !important;
}
body.high-contrast p {
    color: #FFF !important;
}
body.high-contrast .accessibility-bar .btn-outline-secondary,
body.high-contrast .accessibility-bar .btn-outline-dark {
    border-color: #FFFF00 !important;
}
body.high-contrast .navbar,
body.high-contrast .accessibility-bar,
body.high-contrast footer {
    background-color: #000 !important;
    border-color: #FFFF00 !important;
}
body.high-contrast .btn-primary,
body.high-contrast .btn-secondary,
body.high-contrast .btn-light,
body.high-contrast .presentation-cta,
body.high-contrast #subscribe .btn-primary {
    background-color: #FFFF00 !important;
    color: #000 !important;
    border-color: #FFFF00 !important;
}
body.high-contrast .btn-primary:hover,
body.high-contrast .btn-secondary:hover,
body.high-contrast .btn-light:hover,
body.high-contrast .presentation-cta:hover,
body.high-contrast #subscribe .btn-primary:hover {
    background-color: #CCC !important;
    color: #000 !important;
    border-color: #CCC !important;
}
body.high-contrast .quick-link-item {
    background-color: #000 !important;
    border-color: #FFFF00 !important;
    color: #FFFF00 !important;
}
body.high-contrast .quick-link-item i {
    color: #FFFF00 !important;
}
body.high-contrast .quick-link-item:hover {
    background-color: #FFFF00 !important;
    color: #000 !important;
}
body.high-contrast .quick-link-item:hover i {
    color: #000 !important;
}
body.high-contrast #about,
body.high-contrast #rule-work,
body.high-contrast #prizes,
body.high-contrast #paul-singer-institute,
body.high-contrast #rule {
    background-color: #000 !important;
}
body.high-contrast #about h2,
body.high-contrast #about h3,
body.high-contrast #about p,
body.high-contrast #rule-work h2,
body.high-contrast #rule-work h3,
body.high-contrast #rule-work p,
body.high-contrast #prizes h2,
body.high-contrast #prizes h3,
body.high-contrast #prizes p,
body.high-contrast #rule h2,
body.high-contrast #rule h3,
body.high-contrast #rule p,
body.high-contrast #paul-singer-institute h2,
body.high-contrast #paul-singer-institute h3,
body.high-contrast #paul-singer-institute p {
    color: #FFF !important;
}
body.high-contrast #about p b,
body.high-contrast #rule-work p b,
body.high-contrast #prizes p b,
body.high-contrast #rule p b,
body.high-contrast #paul-singer-institute a {
    color: #FFFF00 !important;
}
body.high-contrast #presentation,
body.high-contrast #categories,
body.high-contrast #evaluation,
body.high-contrast #prize-delivery,
body.high-contrast #paul-singer-bio,
body.high-contrast #subscribe {
    background-color: #333 !important;
}
body.high-contrast #presentation p,
body.high-contrast #presentation h1,
body.high-contrast #categories h2,
body.high-contrast #categories h3,
body.high-contrast #categories p,
body.high-contrast #evaluation h2,
body.high-contrast #evaluation h3,
body.high-contrast #evaluation p,
body.high-contrast #prize-delivery h2,
body.high-contrast #prize-delivery h3,
body.high-contrast #prize-delivery p,
body.high-contrast #paul-singer-bio h2,
body.high-contrast #paul-singer-bio h3,
body.high-contrast #paul-singer-bio p,
body.high-contrast #subscribe h2,
body.high-contrast #subscribe p {
    color: #FFF !important;
}
body.high-contrast #presentation p b,
body.high-contrast #presentation h1,
body.high-contrast #categories p b,
body.high-contrast #categories a,
body.high-contrast #evaluation p b,
body.high-contrast #evaluation a,
body.high-contrast #prize-delivery p b,
body.high-contrast #prize-delivery a,
body.high-contrast #paul-singer-bio p b,
body.high-contrast #paul-singer-bio a,
body.high-contrast #subscribe p b,
body.high-contrast #subscribe a {
    color: #FFFF00 !important;
}
body.high-contrast footer {
    background-color: #000 !important;
    border-top: 1px solid #FFFF00 !important;
}
body.high-contrast footer h2,
body.high-contrast footer p,
body.high-contrast footer a,
body.high-contrast footer .copyright {
    color: #FFFF00 !important;
}
body.high-contrast footer a:hover {
    background-color: #333 !important;
    color: #FFF !important;
}
body.high-contrast footer .footer-logo img {
    filter: brightness(0) invert(1) !important;
}
body.high-contrast footer .social-icons a {
    color: #FFFF00 !important;
    background-color: transparent !important;
    border-color: #FFFF00 !important;
}
body.high-contrast footer .social-icons a:hover {
    background-color: #FFFF00 !important;
    color: #000 !important;
    border-color: #FFFF00 !important;
}
body.high-contrast footer .footer-contact ul li i {
    color: #FFFF00 !important;
}
body.high-contrast footer .footer-contact ul li a {
    color: #FFFF00 !important;
}
body.high-contrast footer .footer-contact ul li a:hover {
    color: #CCC !important;
}
body.high-contrast .arrow-up {
    background-color: #FFFF00 !important;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.5) !important;
}
body.high-contrast .arrow-up img {
    filter: invert(0) !important;
}
body.high-contrast .navbar-brand img {
    filter: brightness(0) invert(1) !important;
}
body.high-contrast .carousel-control-prev-icon,
body.high-contrast .carousel-control-next-icon {
    filter: invert(1) !important;
}