/* Impact Section Base Styles */
.impact-section {
    padding: 80px 5%;
    background-color: #0a0a0a; /* Dark background to match site */
    color: #ffffff;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-header {
    margin-bottom: 50px;
    text-align: center;
}

.impact-header span {
    color: #c5a059; /* Brand Gold */
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.impact-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

/* Partner Story Card */
.partner-story-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-img {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Testimonial Stack */
.testimonial-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #c5a059;
    border-radius: 0 15px 15px 0;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.testimonial-author strong {
    display: block;
    color: #c5a059;
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr; /* Switch to single column */
    }

    .impact-header h2 {
        font-size: 1.8rem;
    }

    .story-img {
        height: 200px; /* Shorter image for mobile */
    }
}