/* Learn More Page – all CSS for this page */
@import url("styles.css");
@import url("mobile-responsive.css");

/* Learn More Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="90" r="1.2" fill="rgba(255,255,255,0.09)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, white, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    position: relative;
}

.content-section.bg-light {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-top: 1px solid rgba(75, 46, 131, 0.08);
    border-bottom: 1px solid rgba(75, 46, 131, 0.08);
}

.content-section h2 {
    text-align: center;
    color: #4B2E83;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(57, 181, 74, 0.3);
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Connect section: 4 cards in 4x1 row, full width */
#connect .container {
    max-width: none;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
}
#connect .content-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.content-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(75, 46, 131, 0.05);
    position: relative;
    overflow: hidden;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.15);
}

.content-item:hover::before {
    transform: scaleX(1);
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.1), rgba(57, 181, 74, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.content-item:hover .content-icon {
    background: linear-gradient(135deg, #4B2E83, #39B54A);
    transform: scale(1.1);
}

.content-icon i {
    font-size: 2rem;
    color: #4B2E83;
    transition: color 0.3s ease;
}

.content-item:hover .content-icon i {
    color: white;
}

.content-item h3 {
    color: #4B2E83;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-list li:hover {
    background: rgba(57, 181, 74, 0.05);
    padding-left: 2.2rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0.5rem;
    top: 0.75rem;
    color: #39B54A;
    font-size: 0.9rem;
    width: 16px;
    height: 16px;
    background: rgba(57, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.content-item .btn-primary {
    align-self: flex-start;
    margin-top: auto;
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.content-item .btn-primary:hover {
    background: linear-gradient(135deg, #39B54A, #45c454);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 181, 74, 0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(75, 46, 131, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #39B54A, #45c454);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 181, 74, 0.3);
    color: white;
}

.social-link i {
    font-size: 1.2rem;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.05), rgba(57, 181, 74, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(75, 46, 131, 0.1);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.5rem 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: #4B2E83;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-info a {
    color: #4B2E83;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #39B54A;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, white, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #4B2E83;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: #39B54A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 181, 74, 0.4);
    border-color: #39B54A;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .content-grid {
        gap: 2rem;
    }
    
    .content-item {
        padding: 2rem;
    }
}

@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-item {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .cta-buttons .btn-primary {
        width: auto;
        min-width: 200px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .content-item {
        padding: 1.5rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .content-icon i {
        font-size: 1.5rem;
    }
    
    .content-item h3 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* Participate Section with Purple Background */
#participate {
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    color: white;
    width: 100%;
    margin: 0;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#participate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="70" cy="80" r="1.2" fill="rgba(255,255,255,0.04)"/></svg>');
    opacity: 0.6;
}

#participate .container {
    position: relative;
    z-index: 1;
}

#participate h2,
#participate .section-intro {
    color: white;
}

#participate h2::after {
    background: linear-gradient(90deg, #39B54A, #45c454);
}

#participate .content-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

#participate .content-item::before {
    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.8));
}

#participate .content-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

#participate .content-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#participate .content-item:hover .content-icon {
    background: linear-gradient(135deg, #39B54A, #45c454);
}

#participate .content-icon i {
    color: white;
}

#participate .content-item h3 {
    color: white;
}

#participate .content-item p,
#participate .feature-list li {
    color: rgba(255, 255, 255, 0.95);
}

#participate .feature-list li::before {
    background: rgba(57, 181, 74, 0.2);
    color: #39B54A;
}

#participate .btn-primary {
    background: white;
    color: #4B2E83;
}

#participate .btn-primary:hover {
    background: #39B54A;
    color: white;
}

/* Base container (same as home/other pages) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating contact buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button.whatsapp {
    background-color: #25D366;
}

.floating-button.phone {
    background-color: #007bff;
}

.floating-button i {
    font-size: 24px;
}

/* How We Use Donations Section */
.donation-usage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 0;
    max-width: 1200px;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.12);
}

.usage-number {
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(75, 46, 131, 0.3);
}

.usage-content h3 {
    margin: 0 0 1rem 0;
    color: #4B2E83;
    font-size: 1.5rem;
    font-weight: 600;
}

.usage-content p {
    margin: 0;
    line-height: 1.7;
    color: #666;
    font-size: 1rem;
}

.accountability-message {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(57, 181, 74, 0.05), rgba(75, 46, 131, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(57, 181, 74, 0.2);
    position: relative;
}

.accountability-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    border-radius: 16px 16px 0 0;
}

.accountability-message p {
    margin: 0.75rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.accountability-message p:first-child {
    color: #4B2E83;
}

.accountability-message p:last-child {
    color: #39B54A;
    font-style: italic;
}

@media (max-width: 767px) {
    .donation-usage {
        grid-template-columns: 1fr;
    }
}

/* Our Holistic Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Our Holistic Approach: 4-by-1 full width */
#holistic-approach .container {
    max-width: none;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
}
#holistic-approach .approach-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 991px) {
    #holistic-approach .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    #holistic-approach .approach-grid {
        grid-template-columns: 1fr;
    }
}

.approach-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(75, 46, 131, 0.05);
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.15);
}

.approach-item:hover::before {
    transform: scaleX(1);
}

.approach-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.1), rgba(57, 181, 74, 0.1));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
    background: linear-gradient(135deg, #4B2E83, #39B54A);
    transform: scale(1.1);
}

.approach-icon i {
    font-size: 2.2rem;
    color: #4B2E83;
    transition: color 0.3s ease;
}

.approach-item:hover .approach-icon i {
    color: white;
}

.approach-item h3 {
    color: #4B2E83;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.approach-item p {
    line-height: 1.7;
    color: #666;
}

.approach-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.05), rgba(57, 181, 74, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(75, 46, 131, 0.1);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Our Impact stats section */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.stat-item {
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.35);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #39B54A;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.4;
}

/* Community Voice and Feedback Section */
.feedback-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feedback-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
}

.feedback-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.12);
}

.feedback-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.1), rgba(57, 181, 74, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feedback-item:hover .feedback-icon {
    background: linear-gradient(135deg, #4B2E83, #39B54A);
    transform: scale(1.1);
}

.feedback-icon i {
    font-size: 1.8rem;
    color: #4B2E83;
    transition: color 0.3s ease;
}

.feedback-item:hover .feedback-icon i {
    color: white;
}

.feedback-item p {
    margin: 0;
    line-height: 1.7;
    color: #666;
    font-size: 1rem;
}

/* Together in Truth Section */
.truth-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.truth-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.truth-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.pillar-item {
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.12);
}

.pillar-item:hover::before {
    transform: scaleX(1);
}

.pillar-item i {
    font-size: 2.5rem;
    color: #4B2E83;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.pillar-item:hover i {
    color: #39B54A;
}

.pillar-item p {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.truth-message {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.05), rgba(57, 181, 74, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(75, 46, 131, 0.1);
    position: relative;
}

.truth-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4B2E83, #39B54A);
    border-radius: 16px 16px 0 0;
}

.truth-message p {
    margin: 0.75rem 0;
    font-size: 1.3rem;
    line-height: 1.6;
}

.truth-message p:first-child {
    color: #39B54A;
    font-style: italic;
    font-weight: 500;
}

.truth-message p:last-child {
    color: #4B2E83;
    font-weight: 700;
}

/* Exploratory Philanthropy Section */
.philanthropy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philanthropy-item {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philanthropy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.philanthropy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.12);
}

.philanthropy-item:hover::before {
    transform: scaleX(1);
}

.philanthropy-item h3 {
    color: #4B2E83;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.philanthropy-item h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: #39B54A;
    border-radius: 1px;
}

.philanthropy-item p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 1rem;
}

.philanthropy-item p:last-child {
    margin-bottom: 0;
}

/* SDG Commitment Section – image left, content right */
.sdg-hero-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.sdg-hero-image {
    text-align: center;
}

.sdg-hero-image .un-sdg-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(75, 46, 131, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(75, 46, 131, 0.1);
}

.sdg-hero-image .un-sdg-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 46, 131, 0.25);
    border-color: rgba(57, 181, 74, 0.3);
}

.sdg-hero-content {
    padding: 0 0.5rem;
}

.sdg-hero-content h2 {
    margin-bottom: 0.5rem;
}

.sdg-hero-content .sdg-subtitle {
    margin-bottom: 1.25rem;
}

.sdg-hero-content .sdg-intro {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.sdg-hero-content .sdg-intro p {
    margin-bottom: 1rem;
}

.sdg-icons {
    margin-bottom: 1rem;
}

.sdg-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sdg-logo {
    margin: 2rem 0;
    text-align: center;
}

.un-sdg-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(75, 46, 131, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(75, 46, 131, 0.1);
}

.un-sdg-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 46, 131, 0.25);
    border-color: rgba(57, 181, 74, 0.3);
}

.sdg-emoji {
    font-size: 2.5rem;
    margin: 0 0.5rem;
    display: inline-block;
    animation: sdg-bounce 2s infinite;
}

.sdg-emoji:nth-child(2) { animation-delay: 0.2s; }
.sdg-emoji:nth-child(3) { animation-delay: 0.4s; }
.sdg-emoji:nth-child(4) { animation-delay: 0.6s; }
.sdg-emoji:nth-child(5) { animation-delay: 0.8s; }

@keyframes sdg-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sdg-subtitle {
    font-size: 1.3rem;
    color: #39B54A;
    font-weight: 600;
    margin: 0;
}

.sdg-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.05), rgba(57, 181, 74, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(75, 46, 131, 0.1);
}

.sdg-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #666;
}

.sdg-intro p:last-child {
    margin-bottom: 0;
}

.sdg-section {
    margin: 3rem 0;
}

.section-divider {
    text-align: center;
    font-size: 1.5rem;
    color: #4B2E83;
    margin: 2rem 0;
    font-weight: 300;
}

.sdg-section h3 {
    color: #4B2E83;
    font-size: 1.8rem;
    text-align: center;
    margin: 2rem 0;
    font-weight: 600;
}

.sdg-why {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.key-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #39B54A;
    margin: 1.5rem 0;
    font-style: italic;
}

.sdg-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.sdg-benefits li {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    color: #4B2E83;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.sdg-benefits li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 46, 131, 0.15);
}

.sdg-benefits li::before {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #39B54A;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.focus-sdgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-sdg-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-sdg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.focus-sdg-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.12);
}

.focus-sdg-item:hover::before {
    transform: scaleX(1);
}

.focus-sdg-item h4 {
    color: #4B2E83;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.focus-sdg-item p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.focus-sdg-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.focus-sdg-item ul li {
    line-height: 1.7;
    color: #666;
    margin-bottom: 0.5rem;
}

.additional-sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.additional-sdg-item {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.additional-sdg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.additional-sdg-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75, 46, 131, 0.12);
}

.additional-sdg-item:hover::before {
    transform: scaleX(1);
}

.additional-sdg-item strong {
    color: #4B2E83;
}

.accountability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.accountability-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accountability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4B2E83, #39B54A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.accountability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.12);
}

.accountability-item:hover::before {
    transform: scaleX(1);
}

.accountability-item strong {
    color: #4B2E83;
    font-size: 1.2rem;
}

.sdg-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(57, 181, 74, 0.1), rgba(75, 46, 131, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(57, 181, 74, 0.2);
    position: relative;
}

.sdg-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #4B2E83);
    border-radius: 16px 16px 0 0;
}

.sdg-conclusion p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4B2E83;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sdg-emoji {
        font-size: 2rem;
        margin: 0 0.3rem;
    }

    .sdg-hero-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sdg-hero-image .un-sdg-logo {
        max-width: 280px;
    }

    .sdg-hero-content .sdg-intro {
        text-align: center;
    }

    .un-sdg-logo {
        max-width: 250px;
    }

    .focus-sdgs {
        grid-template-columns: 1fr;
    }

    .additional-sdg-grid {
        grid-template-columns: 1fr;
    }

    .accountability-grid {
        grid-template-columns: 1fr;
    }

    .sdg-benefits {
        grid-template-columns: 1fr;
    }
}

/* Impact Overview: Success Stories, Local Impact, Testimonials, Donor Profiles */
.impact-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.impact-overview-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.impact-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(75, 46, 131, 0.15);
}

.impact-overview-card:hover::before {
    transform: scaleX(1);
}

.impact-overview-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.1), rgba(57, 181, 74, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.impact-overview-card:hover .impact-overview-icon {
    background: linear-gradient(135deg, #4B2E83, #39B54A);
    transform: scale(1.05);
}

.impact-overview-icon i {
    font-size: 1.25rem;
    color: #4B2E83;
    transition: color 0.3s ease;
}

.impact-overview-card:hover .impact-overview-icon i {
    color: white;
}

.impact-overview-card h3 {
    color: #4B2E83;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.impact-overview-subtitle {
    font-size: 0.875rem;
    color: #39B54A;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.impact-overview-card p:not(.impact-overview-subtitle) {
    color: #666;
    line-height: 1.55;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.impact-overview-card .btn-primary {
    align-self: flex-start;
    margin-top: auto;
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.impact-overview-card .btn-primary:hover {
    background: linear-gradient(135deg, #39B54A, #45c454);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 181, 74, 0.3);
}

@media (max-width: 1199px) {
    .impact-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .impact-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .impact-overview-card {
        padding: 1.15rem 1.25rem;
    }

    .impact-overview-card p:not(.impact-overview-subtitle) {
        -webkit-line-clamp: 4;
    }
}

/* Scholarships & Awards Strategy 2026 */
.scholarships-strategy-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-top: 1px solid rgba(75, 46, 131, 0.08);
    border-bottom: 1px solid rgba(75, 46, 131, 0.08);
}

.scholarship-strategy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.scholarship-strategy-header h2 {
    margin-bottom: 0.5rem;
}

.scholarship-org-name {
    font-size: 1.2rem;
    color: #39B54A;
    font-weight: 600;
    margin: 0;
}

.scholarship-strategy-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.scholarship-block {
    margin-bottom: 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.08);
    border: 1px solid rgba(75, 46, 131, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scholarship-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #39B54A, #45c454);
    border-radius: 16px 16px 0 0;
}

.scholarship-block h3 {
    color: #4B2E83;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.scholarship-block h4 {
    color: #4B2E83;
    font-size: 1.15rem;
    margin: 1.25rem 0 0.5rem 0;
    font-weight: 600;
}

.scholarship-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.scholarship-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.scholarship-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.scholarship-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #39B54A;
    font-size: 0.85rem;
}

.scholarship-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.06), rgba(57, 181, 74, 0.06));
    border-left: 4px solid #39B54A;
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #4B2E83;
    font-weight: 500;
    line-height: 1.6;
}

.scholarship-priority-fields,
.scholarship-types {
    margin-top: 1rem;
}

.scholarship-priority-fields p,
.scholarship-types p {
    margin-bottom: 0.5rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.award-item {
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(75, 46, 131, 0.04), rgba(57, 181, 74, 0.04));
    border-radius: 12px;
    border: 1px solid rgba(75, 46, 131, 0.08);
    transition: all 0.3s ease;
}

.award-item:hover {
    border-color: rgba(57, 181, 74, 0.3);
    box-shadow: 0 6px 20px rgba(75, 46, 131, 0.06);
}

.award-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.award-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.scholarship-looking-ahead {
    text-align: center;
}

.scholarship-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.scholarship-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #4B2E83, #5a3a9a);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scholarship-cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #39B54A, #45c454);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 181, 74, 0.3);
}

.scholarship-cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #4B2E83;
    color: #4B2E83;
    padding: 0.85rem 1.75rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scholarship-cta-buttons .btn-secondary:hover {
    background: #4B2E83;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .scholarship-strategy-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .scholarship-strategy-content {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .scholarship-block {
        padding: 1.5rem;
    }

    .scholarship-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
} 