/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05), rgba(123, 31, 162, 0.05));
    position: relative;
    overflow: hidden;
}

.about-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74, 20, 140, 0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color, #4a148c);
    margin-bottom: 30px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #4a148c), var(--secondary-color, #7b1fa2));
    border-radius: 2px;
}

.about-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color, #7b1fa2);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
}

.about-values h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color, #4a148c);
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
    border-color: var(--primary-color, #4a148c);
}

.value-item i {
    font-size: 48px;
    color: var(--primary-color, #4a148c);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--secondary-color, #7b1fa2);
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Charity Section Styles */
.charity-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.08), rgba(156, 39, 176, 0.05));
    position: relative;
}

.charity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.charity-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color, #4a148c);
    margin-bottom: 30px;
    position: relative;
}

.charity-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #4a148c), var(--accent-color, #9c27b0));
    border-radius: 2px;
}

.charity-text p {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(74, 20, 140, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color, #4a148c), var(--accent-color, #9c27b0));
}

.partner-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(74, 20, 140, 0.25);
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color, #4a148c), var(--secondary-color, #7b1fa2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 20, 140, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(74, 20, 140, 0);
    }
}

.partner-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color, #4a148c);
    margin-bottom: 10px;
}

.partner-subtitle {
    font-size: 16px;
    color: var(--secondary-color, #7b1fa2);
    font-weight: 600;
    margin-bottom: 25px;
}

.partner-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid var(--primary-color, #4a148c);
    background: transparent;
    color: var(--primary-color, #4a148c);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color, #4a148c);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.3);
}

/* Contact Section Enhancement */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05), rgba(123, 31, 162, 0.05));
}

.contact h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color, #4a148c);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #4a148c), var(--secondary-color, #7b1fa2));
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 20, 140, 0.15);
    border-color: var(--primary-color, #4a148c);
}

.contact-item i {
    font-size: 32px;
    color: var(--primary-color, #4a148c);
    min-width: 40px;
}

.contact-item span {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(74, 20, 140, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color, #4a148c);
    box-shadow: 0 0 0 4px rgba(74, 20, 140, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .charity-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text h2::after,
    .charity-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section,
    .charity-section,
    .contact {
        padding: 60px 0;
    }
    
    .about-text h2,
    .charity-text h2,
    .contact h2 {
        font-size: 36px;
    }
    
    .about-intro {
        font-size: 18px;
    }
    
    .partner-card {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .value-item i {
        font-size: 36px;
    }
}

/* CSS Variables */
:root {
    --primary-color: #4a148c;
    --secondary-color: #7b1fa2;
    --accent-color: #9c27b0;
}
