/* ===== ANNUAL REPORT COMPREHENSIVE STYLES ===== */

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 350px;
    }
}

.main-content {
    min-width: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #D62D8C;
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    padding: 0.75rem 0;
    color: #4B5563;
    line-height: 1.6;
}

/* Founder Message */
.founder-message {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.03), rgba(123, 45, 126, 0.03));
    border-left: 4px solid #D62D8C;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.founder-message .lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.founder-message p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

/* Stats Grid Summary */
.stats-grid-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-summary {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.15);
    transition: all 0.3s ease;
}

.stat-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
}

.stat-summary .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #D62D8C;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-summary .stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6B7280;
}

/* Program Stats */
.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-metric {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.1);
    transition: all 0.3s ease;
}

.program-metric:hover {
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.12);
}

.program-metric > i {
    font-size: 2.5rem;
    color: #D62D8C;
    flex-shrink: 0;
}

.metric-content h4 {
    font-size: 1.25rem;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.metric-content p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

/* Achievement Box */
.achievement-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.achievement-box h4 {
    color: #065f46;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.achievement-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-box li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #047857;
    font-weight: 500;
}

.achievement-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Research Highlights */
.research-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.research-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.1);
    text-align: center;
}

.research-item h4 {
    font-size: 1.75rem;
    color: #D62D8C;
    margin: 0 0 0.5rem 0;
    font-weight: 900;
}

.research-item p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

/* Demographics Section */
.demographics-section {
    margin: 2rem 0;
}

.demographic-card {
    margin-bottom: 2rem;
}

.demographic-card h4 {
    font-size: 1.1rem;
    color: #1F2937;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demographic-card h4 i {
    color: #D62D8C;
}

.percentage-bar {
    width: 100%;
    height: 40px;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.percentage-fill {
    height: 100%;
    background: linear-gradient(135deg, #D62D8C, #7B2D7E);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: white;
    font-weight: 700;
    transition: width 1s ease;
}

.demographic-card > p {
    font-size: 0.95rem;
    color: #6B7280;
}

/* Geographic & Destination Stats */
.geographic-stats,
.destination-stats {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.geo-item,
.destination-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(214, 45, 140, 0.1);
}

.geo-item:last-child,
.destination-item:last-child {
    border-bottom: none;
}

.geo-region,
.destination-name {
    font-weight: 600;
    color: #1F2937;
}

.geo-number,
.destination-number {
    color: #D62D8C;
    font-weight: 700;
}

.destination-flag {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.outcome-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.03), rgba(123, 45, 126, 0.03));
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
}

.outcome-card > i {
    font-size: 2.5rem;
    color: #D62D8C;
    margin-bottom: 1rem;
    display: block;
}

.outcome-card h4 {
    font-size: 1.5rem;
    color: #D62D8C;
    margin: 0 0 0.75rem 0;
}

.outcome-card p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

/* Story Card */
.story-card {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.story-header {
    margin-bottom: 2rem;
}

.story-header h3 {
    font-size: 1.75rem;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
}

.story-location {
    font-size: 1rem;
    color: #D62D8C;
    font-weight: 600;
}

.story-location::before {
    content: '📍 ';
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

.story-content blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #7B2D7E;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid #D62D8C;
    background: rgba(214, 45, 140, 0.03);
    border-radius: 0 8px 8px 0;
}

.story-content em {
    display: block;
    font-size: 0.95rem;
    color: #6B7280;
    margin-top: 1rem;
    font-style: normal;
}

/* Impact Quote */
.impact-quote {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.quote-text {
    font-size: 1.35rem;
    font-style: italic;
    color: #7B2D7E;
    margin: 0 0 1rem 0;
}

.quote-author {
    font-size: 1.1rem;
    color: #D62D8C;
    font-weight: 600;
}

/* Financial Summary */
.financial-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.financial-card {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.financial-card h4 {
    font-size: 1.1rem;
    color: #6B7280;
    margin: 0 0 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financial-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #D62D8C;
    margin-bottom: 1.5rem;
}

.financial-amount.positive {
    color: #10b981;
}

.financial-breakdown {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financial-breakdown li {
    padding: 0.5rem 0;
    color: #6B7280;
    display: flex;
    justify-content: space-between;
}

.financial-note {
    font-size: 0.875rem;
    color: #6B7280;
    font-style: italic;
    margin-top: 1rem;
}

/* Spending Breakdown */
.spending-breakdown {
    margin: 2rem 0;
}

.spending-item {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.spending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.spending-header i {
    font-size: 1.5rem;
    color: #D62D8C;
    margin-right: 0.75rem;
}

.spending-header h4 {
    display: flex;
    align-items: center;
    color: #1F2937;
    margin: 0;
    flex: 1;
}

.spending-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #D62D8C;
}

.spending-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spending-details li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: #6B7280;
    border-bottom: 1px solid rgba(214, 45, 140, 0.05);
}

.spending-details li:last-child {
    border-bottom: none;
}

.spending-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D62D8C;
    font-weight: 700;
}

/* Efficiency Metrics */
.efficiency-metrics {
    margin: 3rem 0;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.efficiency-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(5, 150, 105, 0.03));
    border: 2px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    text-align: center;
}

.efficiency-item > i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.efficiency-item h4 {
    font-size: 1rem;
    color: #065f46;
    margin: 0 0 1rem 0;
}

.efficiency-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.efficiency-note {
    font-size: 0.875rem;
    color: #047857;
    margin: 0;
}

/* Audit Section */
.audit-section {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.audit-section h3 {
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.audit-section h3 i {
    color: #3b82f6;
}

.audit-section p {
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.audit-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Challenge Card */
.challenge-card {
    background: white;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.challenge-card h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.challenge-card h3 i {
    color: #f59e0b;
}

.challenge-card h4 {
    color: #1F2937;
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem 0;
}

.challenge-card > p {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.challenge-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.challenge-card li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #6B7280;
}

.challenge-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 700;
}

/* Lessons Learned */
.lessons-learned {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(124, 58, 237, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.lessons-learned h3 {
    color: #6d28d9;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lessons-learned ol {
    counter-reset: lessons-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lessons-learned li {
    counter-increment: lessons-counter;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    color: #7c3aed;
    font-weight: 500;
}

.lessons-learned li::before {
    content: counter(lessons-counter);
    position: absolute;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.goal-card {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D62D8C, #7B2D7E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.goal-icon i {
    font-size: 1.75rem;
    color: white;
}

.goal-card h3 {
    font-size: 1.25rem;
    color: #1F2937;
    margin: 0 0 0.75rem 0;
}

.goal-card > p {
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.goal-status {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(214, 45, 140, 0.1);
}

.status-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 600;
}

.status-number {
    font-size: 1.1rem;
    color: #D62D8C;
    font-weight: 900;
}

/* Investment Needed */
.investment-needed {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.investment-needed h3 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1rem;
}

.investment-needed p {
    font-size: 1.05rem;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

.investment-needed ul {
    list-style: none;
    padding: 0;
}

.investment-needed li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #6B7280;
}

.investment-needed li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D62D8C;
    font-weight: 700;
}

/* Gratitude Message */
.gratitude-message .lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.gratitude-message p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

/* Donor Recognition */
.donor-recognition {
    margin: 3rem 0;
}

.donor-tiers {
    margin: 2rem 0;
}

.donor-tier {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.donor-tier h4 {
    color: #D62D8C;
    margin: 0 0 1rem 0;
}

.donor-tier ul {
    list-style: none;
    padding: 0;
}

.donor-tier li {
    padding: 0.5rem 0;
    color: #4B5563;
    font-weight: 500;
}

.donor-note {
    font-size: 0.95rem;
    color: #6B7280;
    font-style: italic;
    margin-top: 2rem;
}

/* Partner Recognition */
.partner-recognition {
    margin: 3rem 0;
}

.partner-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.partner-list li {
    padding: 1rem;
    background: white;
    border: 1px solid rgba(214, 45, 140, 0.15);
    border-radius: 8px;
    color: #4B5563;
}

/* FAQ Container */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(214, 45, 140, 0.1);
}

.faq-question {
    color: #1F2937;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.faq-answer p {
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.15);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    color: #D62D8C;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-box > p {
    color: #4B5563;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.cta-note {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: #1F2937;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card h3 i {
    color: #D62D8C;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.quick-stats {
    display: grid;
    gap: 1.5rem;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.03), rgba(123, 45, 126, 0.03));
    border-radius: 8px;
}

.quick-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #D62D8C;
    display: block;
    margin-bottom: 0.25rem;
}

.quick-stat .stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 600;
}

.previous-reports {
    display: grid;
    gap: 1rem;
}

.previous-report {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(214, 45, 140, 0.03);
    border-radius: 8px;
    text-decoration: none;
    color: #4B5563;
    transition: all 0.3s ease;
}

.previous-report:hover {
    background: rgba(214, 45, 140, 0.08);
    color: #D62D8C;
}

.previous-report i {
    color: #D62D8C;
}

.download-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.download-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-url {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.share-url input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
}

.copy-btn {
    padding: 0.75rem 1rem;
    background: #D62D8C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #7B2D7E;
}

.related-report {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(214, 45, 140, 0.15);
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.related-report:hover {
    box-shadow: 0 4px 12px rgba(214, 45, 140, 0.15);
}

.related-report__image {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-report__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-report__content h4 {
    font-size: 0.95rem;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
}

.related-report__content p {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

/* Section Intro */
.section-intro {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid-summary,
    .program-stats,
    .financial-summary,
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .sidebar {
        position: static;
    }
}