.aa-part-container {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(8, 33, 89, 0.05);
    font-family: inherit;
}

.aa-part-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .aa-part-grid {
        grid-template-columns: 1fr;
    }
}

.aa-part-section {
    margin-bottom: 30px;
}

.aa-section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.aa-section-title-sub {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.aa-subtitle {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 15px;
    font-weight: 500;
}

.aa-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.aa-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
}

.aa-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.aa-footer-desc {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.5;
}

.aa-footer-desc.highlight-text {
    font-weight: 600;
    opacity: 1;
}

.aa-visuals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.aa-img-wrapper {
    background: #f7f9fc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 180px;
}

.aa-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aa-cta-wrapper {
    text-align: center;
}

.aa-btn-donate {
    display: inline-block;
    padding: 14px 32px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 56, 58, 0.2);
}

.aa-btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 56, 58, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-bounce {
    animation: bounceSlow 3.5s ease-in-out infinite;
}
