/* About Page Specific Styles for Unlocking the Girl-Child Potential Initiative
   Created May 2025
   Color Palette:
   - Base background: #EEEAE7
   - Primary accent: #ED6596
   - Secondary accent: #C62A7E
   - Text: #232323
*/

/* === Base Styles === */
body {
    font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    color: #232323;;
    background-color: #EEEAE7;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header & Navigation === */
#header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

#main-nav {
    display: flex;
    align-items: center;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

#nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-links li {
    margin-left: 25px;
}

#nav-links a {
    color: #232323;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

#nav-links a:hover {
    color: #ED6596;
}

#nav-links a.active {
    color: #C62A7E;
}

#nav-links a.active::after,
#nav-links a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ED6596;
    bottom: 0;
    left: 0;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #232323;
    transition: all 0.3s ease;
}

/* === Page Header === */
#page-header {
    background-color: #C62A7E;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    background-image: linear-gradient(135deg, #ED6596, #C62A7E);
    position: relative;
    overflow: hidden;
}

#page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/pattern-dots.png');
    opacity: 0.1;
    z-index: 1;
}

#page-header .container {
    position: relative;
    z-index: 2;
}

#page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* === Our Story Section === */
#our-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-text h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.content-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #ED6596;
    bottom: 0;
    left: 0;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #232323;
}

/* === Timeline Section === */
#timeline {
    padding: 80px 0;
    background-color: #EEEAE7;
    position: relative;
}

#timeline h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #ED6596;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-icon {
    position: absolute;
    background-color: #fff;
    border: 3px solid #ED6596;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #C62A7E;
    box-shadow: 0 0 0 5px #EEEAE7;
}

.timeline-icon i {
    font-size: 20px;
}

.timeline-content {
    width: 45%;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
}

.timeline-content h3 {
    color: #C62A7E;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: #232323;
}

/* === Mission and Vision Section === */
#mission-vision {
    padding: 80px 0;
    background-color: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
    background-color: #EEEAE7;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-icon i {
    font-size: 30px;
    color: #ED6596;
}

.mission-card h2,
.vision-card h2,
.values-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #C62A7E;
}

.mission-card p,
.vision-card p {
    color: #232323;
    font-size: 1.1rem;
}

.values-list {
    text-align: left;
    padding-left: 20px;
}

.values-list li {
    margin-bottom: 15px;
    position: relative;
    list-style-type: none;
}

.values-list li:before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: #ED6596;
    font-weight: bold;
}

/* === Team Section === */
#our-team {
    padding: 80px 0;
    background-color: #EEEAE7;
}

#our-team h2,
#board h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
    color: #232323;
}

.member-title {
    color: #ED6596;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #EEEAE7;
    color: #C62A7E;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.member-social a:hover {
    background-color: #ED6596;
    color: #fff;
}

.team-cta {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #C62A7E;
}

.team-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* === Board Section === */
#board {
    padding: 80px 0;
    background-color: #fff;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.board-member {
    background-color: #EEEAE7;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateY(-5px);
}

.board-member h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #232323;
}

.board-title {
    color: #ED6596;
    font-weight: 600;
    margin-bottom: 10px;
}

/* === Annual Reports Section === */
#annual-reports {
    padding: 80px 0;
    background-color: #EEEAE7;
}

#annual-reports h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.report-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #EEEAE7;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.report-icon i {
    font-size: 30px;
    color: #ED6596;
}

.report-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #232323;
}

.report-card p {
    margin-bottom: 20px;
}

/* === Recognition Section === */
#recognition {
    padding: 80px 0;
    background-color: #fff;
}

#recognition h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.awards-container {
    max-width: 900px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #EEEAE7;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateX(10px);
}

.award-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.award-icon i {
    font-size: 25px;
    color: #ED6596;
}

.award-info h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #232323;
}

.award-org {
    color: #ED6596;
    font-weight: 600;
    margin-bottom: 10px;
}

.award-info p {
    margin: 0;
}

/* === Partners Section === */
#about-partners {
    padding: 80px 0;
    background-color: #EEEAE7;
}

#about-partners h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
    align-items: center;
}

.partner {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner:hover {
    transform: translateY(-5px);
}

.partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner:hover img {
    filter: grayscale(0);
}

.partner-cta {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partner-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #C62A7E;
}

.partner-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* === CTA Section === */
#about-cta {
    padding: 80px 0;
    background-image: linear-gradient(135deg, #ED6596, #C62A7E);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/pattern-dots.png');
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* === FAQ Section === */
#faq {
    padding: 80px 0;
    background-color: #fff;
}

#faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #C62A7E;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-size: 1.2rem;
    background-color: #EEEAE7;
    color: #232323;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    font-weight: 600;
}

.accordion-header:hover {
    background-color: #e6e1dd;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon i {
    font-size: 18px;
    color: #ED6596;
    transition: transform 0.3s ease;
}

.accordion-header .fa-minus {
    display: none;
}

.accordion-header[aria-expanded="true"] .fa-minus {
    display: block;
}

.accordion-header[aria-expanded="true"] .fa-plus {
    display: none;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 20px 25px;
    max-height: 1000px;
}

.accordion-content p {
    margin: 0;
}

/* === Footer === */
#footer {
    background-color: #232323;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #ED6596;
    bottom: 0;
    left: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ED6596;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #ED6596;
}

.contact-info a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ED6596;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #ED6596;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ED6596;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ED6596;
    color: #fff;
}

.btn-primary:hover {
    background-color: #C62A7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 101, 150, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #ED6596;
    border: 2px solid #ED6596;
}

.btn-secondary:hover {
    background-color: #ED6596;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 101, 150, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ED6596;
    border: 2px solid #ED6596;
}

.btn-outline:hover {
    background-color: #ED6596;
    color: #fff;
    transform: translateY(-3px);
}

/* === Back to Top Button === */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ED6596;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: #C62A7E;
    transform: translateY(-5px);
}

/* === Animations === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    #header .container {
        padding: 10px 20px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    #menu-toggle {
        display: block;
    }
    
    #nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    #nav-links.active {
        right: 0;
    }
    
    #nav-links li {
        margin: 0 0 20px;
    }
    
    #page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .content-image,


/* Continuing from the cutoff at media query for 768px */
    .content-text,
    .content-image {
        flex: 100%;
    }
    
    #page-header h1 {
        font-size: 2rem;
    }
    
    #page-header p {
        font-size: 1rem;
    }
    
    .mission-vision-grid,
    .team-grid,
    .board-grid,
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        flex-direction: column;
    }
    
    .award-icon {
        margin-bottom: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #page-header h1 {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .team-grid,
    .board-grid,
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .accordion-header {
        font-size: 1rem;
        padding: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* === Accessibility Enhancements === */
:focus {
    outline: 3px solid #ED6596;
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === Print Styles === */
@media print {
    #header,
    #back-to-top,
    #about-cta,
    .footer-col:nth-child(3),
    .footer-col:nth-child(4),
    .member-social,
    .btn {
        display: none !important;
    }
    
    body {
        background-color: #fff;
        color: #000;
        font-size: 12pt;
    }
    
    #page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    #page-header::before {
        display: none;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    #mission-vision,
    #our-team,
    #board,
    #annual-reports,
    #recognition,
    #about-partners,
    #faq {
        background-color: #fff;
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .timeline-container::before,
    .timeline-icon {
        display: none;
    }
    
    .timeline-content {
        box-shadow: none;
        margin-left: 0 !important;
        width: 100%;
    }
    
    .team-member,
    .board-member,
    .report-card,
    .award-item,
    .partner {
        break-inside: avoid;
        box-shadow: none;
    }
    
    .team-grid,
    .board-grid,
    .reports-grid {
        display: block;
    }
    
    .team-member,
    .board-member,
    .report-card {
        margin-bottom: 20px;
    }
    
    .footer {
        border-top: 1px solid #000;
        padding-top: 20px;
    }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
    
    body {
        background-color: #1a1a1a;
        color: #f0f0f0;
    }
    
    #header,
    .mission-card,
    .vision-card,
    .values-card,
    .team-member,
    .board-member,
    .report-card,
    .award-item {
        background-color: #252525;
    }
    
    #header {
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    #nav-links a {
        color: #f0f0f0;
    }
    
    .card-icon,
    .member-image,
    .partner {
        background-color: #333;
    }
    
    .team-member,
    .report-card {
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .accordion-header {
        background-color: #252525;
        color: #f0f0f0;
    }
    
    .accordion-content {
        background-color: #1a1a1a;
    }
    
    #our-story,
    #mission-vision,
    #board,
    #recognition,
    #faq {
        background-color: #1a1a1a;
    }
    
    #timeline,
    #our-team,
    #annual-reports,
    #about-partners {
        background-color: #111;
    }
    
    .btn-secondary {
        background-color: #333;
        color: #ED6596;
    }
    
    .btn-outline {
        color: #ED6596;
    }
}

/* === Animations - Additional === */
@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-right {
    animation: slideInRight 0.8s ease forwards;
}

/* === Additional Utility Classes === */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* === Rich Text Content Styles === */
.rich-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #C62A7E;
}

.rich-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ED6596;
}

.rich-text p {
    margin-bottom: 1rem;
}

.rich-text ul,
.rich-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.rich-text li {
    margin-bottom: 0.5rem;
}

.rich-text blockquote {
    border-left: 4px solid #ED6596;
    padding-left: 1rem;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    color: #666;
}

.rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* === Preloader === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EEEAE7;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(237, 101, 150, 0.3);
    border-radius: 50%;
    border-top-color: #ED6596;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === Cookie Consent === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 9998;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* === Skip to content === */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px 15px;
    background-color: #ED6596;
    color: white;
    text-decoration: none;
    transition: top 0.3s ease;
    z-index: 1001;
}

.skip-to-content:focus {
    top: 0;
}

/* === Smooth Scrolling === */
html {
    scroll-behavior: smooth;
}

/* Disable for users who prefer reduced motion */
@media (prefers-reduced-motion) {
    html {
        scroll-behavior: auto;
    }
    
    .animate-fadeIn,
    .animate-left,
    .animate-right,
    .member-image img,
    .team-member:hover,
    .board-member:hover,
    .report-card:hover,
    .partner:hover,
    .timeline-content:hover,
    .mission-card:hover,
    .vision-card:hover,
    .values-card:hover {
        animation: none;
        transform: none;
        transition: none;
    }
}