@import url('https://api.fontshare.com/v2/css?f[]=satoshi@1,2&display=swap');

:root {
    --yellow: #d1deda;
    --gold: #d1deda;
    --white: hsl(0, 0%, 100%);
    --bg: #FAFAFA;
    --text: #111111;
    --muted: #6B6B6B;
    --nav-width-expanded: 220px;
    --nav-width-collapsed: 84px;
    --max-content: 1200px;
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.22, 0.9, 0.37, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}
h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #006837;
}
h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 600;
    margin-bottom: 1rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f8f8f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    width: 100%;
}
.image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.image:hover {
    transform: scale(1.05);
}
.image:hover img {
    transform: scale(1.1);
}
p {
    margin-bottom: 1rem;
    max-width: 70ch;
}
.container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 1.5rem;
}
section {
    padding: 4rem 0;
}
/* Navigation Styles - Consistent with main site */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.active {
    display: block;
    opacity: 1;
}
.nav-container {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: auto;
background: linear-gradient(165deg, #0a0f0a 0%, #064d24 35%, #21a45d 70%, #b9ff66 100%);
z-index: 999;
transition: var(--transition);
display: flex;
flex-direction: column;
box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.nav-container.collapsed {
    width: auto;
}
.nav-brand {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: var(--transition);
}
.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.nav-toggle svg {
    width: 20px;
    height: 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    overflow: hidden;
}
.nav-logo img {
    width: 35px;
    height: 35px;
    border-radius: 8%;
    margin-right: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-logo span {
    font-weight: 1000;
    color: var(--white);
    transition: var(--transition);
}
.nav-container.collapsed .nav-logo span {
    opacity: 0;
    width: 0;
}
.nav-menu {
    flex: 1;
    padding: 1.5rem 0;
    list-style: none;
}
.nav-menu[role="menubar"] {
    display: flex;
    flex-direction: column;
}
.nav-item {
    margin-bottom: 0.5rem;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
    white-space: nowrap
}
.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.nav-link svg {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.nav-link span {
    transition: var(--transition);
}
.nav-container.collapsed .nav-link span {
    opacity: 0;
    width: 0;
}
.nav-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.nav-contact:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.nav-contact svg {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.nav-contact span {
    transition: var(--transition);
}
.nav-container.collapsed .nav-contact span {
    opacity: 0;
    width: 0;
}
.nav-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    width: 100%;
}
.nav-collapse:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.nav-collapse svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}
.nav-container.collapsed .nav-collapse svg {
    transform: rotate(180deg);
}
/* Tooltips for collapsed state */
.nav-link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--text);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    margin-left: 0.5rem;
}
.nav-container.collapsed .nav-link:hover::after {
    opacity: 1;
}
/* Main content area */
.main-content {
    margin-left: var(--nav-width-expanded);
    transition: var(--transition);
}
.nav-container.collapsed ~ .main-content {
    margin-left: var(--nav-width-collapsed);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 997;
    background-color: var(--yellow);
    border: none;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Hero Section - About Page */
.about-hero {
    background: radial-gradient(circle at 70% 30%, var(--yellow) 0%, var(--gold) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.3"><path d="M20,20 Q40,5 60,20 T100,20" stroke="%23FFFFFF" fill="none" stroke-width="2"/><path d="M0,40 Q20,25 40,40 T80,40" stroke="%23FFFFFF" fill="none" stroke-width="2"/><path d="M20,60 Q40,45 60,60 T100,60" stroke="%23FFFFFF" fill="none" stroke-width="2"/></svg>');
    background-size: 200px;
    animation: waveMove 12s ease-in-out infinite;
}
@keyframes waveMove {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}
.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.about-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 1.5rem;
    background:#006837;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}
/* Story Section */
.story-section {
    background-color: var(--white);
    position: relative;
}
.story-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,#ffff00, #52dd52);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}
.timeline-item:nth-child(odd) {
    padding-right: 50%;
}
.timeline-item:nth-child(even) {
    padding-left: 50%;
}
.timeline-content {
    background: rgba(235, 238, 224, 0.75);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1), 0 0 0 1px var(--gold);
}
.timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgba(235, 238, 224, 0.75);
}
.timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(235, 238, 224, 0.75);
}
.timeline-marker {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
/* Problem Section */
.problem-section {
    background: linear-gradient(to bottom, rgba(255, 214, 0, 0.05) 0%, transparent 100%);
    position: relative;
}
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.problem-card {
    background: rgba(235, 238, 224, 0.75);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.problem-card:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('financial-drain.png') center/cover;
}
.problem-card:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('cooking.jpg') center/cover;
}
.problem-card:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('educational.jpg') center/cover;
}


.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1), 0 0 0 1px var(--gold);
}

/* Mission Vision Section */
.mission-vision {
    background-color: var(--white);
    position: relative;
}
.mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100" opacity="0.03"><path d="M20,50 Q50,20 80,50 T140,50" stroke="%23D4AF37" fill="none" stroke-width="2"/><circle cx="20" cy="50" r="3" fill="%23D4AF37"/><circle cx="80" cy="50" r="3" fill="%23D4AF37"/><circle cx="140" cy="50" r="3" fill="%23D4AF37"/><path d="M140,50 Q170,80 200,50" stroke="%23D4AF37" fill="none" stroke-width="2"/></svg>');
    background-size: 400px;
    background-repeat: no-repeat;
    background-position: center 60%;
}
.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.mission-card, .vision-card {
    background: rgba(235, 238, 224, 0.75);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.mission-card:hover, .vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1), 0 0 0 1px var(--gold);
}
.mission-icon, .vision-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 214, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-icon svg, .vision-icon svg {
    width: 30px;
    height: 30px;
    color:#006837;
}
/* Values Section */
.values-section {
    background: linear-gradient(to bottom, rgba(255, 214, 0, 0.05) 0%, transparent 100%);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.value-card {
    background: rgba(235, 238, 224, 0.75);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 2rem;
    transition: var(--transition);
    animation: fadeInBackground 2s ease-in-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    color: #333; /* Ensure text is visible initially */
}
.value-card:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('impact.jpg') center/cover;
    color: white; /* White text for dark backgrounds */
}
.value-card:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('customer.png') center/cover;
    color: white;
}
.value-card:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('practical.png') center/cover;
    color: white;
}
.value-card:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('patnership.png') center/cover;
    color: white;
}
.value-card:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1), 0 0 0 1px var(--gold);
}
@keyframes fadeInBackground {
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .value-card {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('your-image.jpg') center/cover;
        color: white;
    }
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 214, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.value-icon svg {
    width: 24px;
    height: 24px;
    color:#006837;
}
/* Team Section */
.team-section {
    background-color: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.team-member {
    background: rgba(235, 238, 224, 0.75);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1), 0 0 0 1px var(--gold);
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background-color: #e0e0e0;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Promise Section */
.promise-section {
    background: linear-gradient(to bottom, rgba(255, 214, 0, 0.05) 0%, transparent 100%);
}
.promise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.promise-card {
    background: rgba(235, 238, 224, 0.75);
    backdrop-filter: blur(8px) saturate(120%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.1), 0 0 0 1px var(--gold);
}
.promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 214, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promise-icon svg {
    width: 30px;
    height: 30px;
    color: #006837;
}
/* CTA Section */
.cta-section {
    background: radial-gradient(circle at 70% 30%, var(--yellow) 0%, var(--gold) 100%);
    padding: 4rem 0;
    text-align: center;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--text);
    color: var(--white);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}
.btn-secondary:hover {
    background-color: var(--text);
    color: var(--white);
    transform: translateY(-2px);
}
/* Footer */
.footer {
    background-color: var(--text);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.footer-brand {
    flex: 1;
}
.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    max-width: 40ch;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
}
.social-media {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.social-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.social-icons a:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}
.social-icons svg {
    width: 20px;
    height: 20px;
}
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}
/* Animation for reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive Styles */
@media (max-width: 1023px) {
    .nav-container {
        width: auto;
    }
    
    .nav-container.collapsed {
        width: 70px;
    }
    
    .main-content {
        margin-left: 180px;
    }
    
    .nav-container.collapsed ~ .main-content {
        margin-left: 70px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        right: auto;
        border-left: none;
        border-right: 10px solid rgba(235, 238, 224, 0.75);
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .problem-cards,
    .mission-vision-content,
    .values-grid,
    .promise-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .nav-container {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .nav-container.active {
        transform: translateX(0);
    }
    
    .nav-container.collapsed {
        width: 280px;
        transform: translateX(-100%);
    }
    
    .nav-container.collapsed.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
}
/* Utility Classes */
.text-center {
    text-align: center;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-2 {
    margin-top: 2rem;
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}