/* Emergency fix for About Us text visibility */

/* Force all About section text to be dark */
.about,
.about *,
.about p,
.about .about__story-text {
    color: #333333 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Specific targeting for story text */
section#about .about__story-text,
.about .about__content .about__story-text,
.about__story .about__story-text {
    color: #333333 !important;
    background: none !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Override any inherited styles */
.about__story-content .about__story-text {
    color: #333333 !important;
}

/* Test if it's a specificity issue */
html body main section.about div.container div.about__content div.about__story div.about__story-content p.about__story-text {
    color: #333333 !important;
}