/* Back Button Styles */
.back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 1rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.page-header .header-content {
    display: flex;
    align-items: center;
}

/* Detail Pages Styles */
.detail-hero {
    margin: -1.5rem -1.5rem 2rem -1.5rem;
}

.detail-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-content {
    padding: 0;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-teal);
    border-radius: 12px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Impact Breakdown */
.impact-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.impact-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-teal);
    min-width: 60px;
}

.impact-description {
    color: var(--text-dark);
    font-weight: 500;
}

/* Donation Form */
.donation-form {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow);
    margin-top: 2rem;
}

.amount-selector {
    margin-bottom: 1.5rem;
}

.preset-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.75rem;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn.active,
.amount-btn:hover {
    border-color: var(--primary-teal);
    background: var(--primary-teal);
    color: var(--white);
}

.custom-amount input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.custom-amount input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(45, 155, 139, 0.1);
}

.donate-now-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.donate-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

/* Project Detail Styles */
.project-progress-section {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow);
    margin-bottom: 2rem;
}

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

.progress-amount {
    display: flex;
    flex-direction: column;
}

.progress-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--medium-gray);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-icon {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--medium-gray);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.timeline-item.completed .timeline-icon {
    background: var(--success);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-teal);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Impact Goals */
.impact-goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.goal-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.goal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.goal-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.support-project-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.support-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

/* History Page Styles */
.history-summary {
    margin-bottom: 2rem;
}

.summary-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.summary-stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.history-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-btn {
    background: var(--medium-gray);
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn.active {
    background: var(--primary-teal);
    color: var(--white);
}

.filter-btn:hover:not(.active) {
    background: var(--light-teal);
    color: var(--primary-teal);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.history-icon {
    width: 45px;
    height: 45px;
    background: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.history-content {
    flex: 1;
}

.history-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.history-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.history-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.history-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-right: 1rem;
}

.history-status {
    color: var(--success);
    font-size: 1.2rem;
}

.history-actions {
    margin-top: 2rem;
    text-align: center;
}

.export-btn {
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.export-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-1px);
}

/* Settings Page Styles */
.settings-section {
    margin-bottom: 2rem;
}

.settings-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.setting-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.setting-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.setting-item.danger {
    border-left: 4px solid var(--danger);
}

.setting-content {
    flex: 1;
}

.setting-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.setting-content p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.setting-action {
    background: var(--light-teal);
    color: var(--primary-teal);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.setting-action:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.setting-action.danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.setting-action.danger:hover {
    background: var(--danger);
    color: var(--white);
}

.setting-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.setting-select:focus {
    border-color: var(--primary-teal);
}

/* Toggle Switch */
.setting-toggle {
    position: relative;
}

.toggle-input {
    display: none;
}

.toggle-label {
    width: 50px;
    height: 26px;
    background: var(--medium-gray);
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-input:checked + .toggle-label {
    background: var(--primary-teal);
}

.toggle-input:checked + .toggle-label::after {
    transform: translateX(24px);
}

/* Support Page Styles */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.support-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-content {
    flex: 1;
}

.support-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.support-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.support-status.online {
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 600;
}

.support-response,
.support-hours {
    color: var(--text-light);
    font-size: 0.8rem;
}

.support-btn {
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.support-btn:hover {
    background: var(--accent-teal);
    transform: translateY(-1px);
}

.support-btn.primary {
    background: var(--primary-blue);
}

.support-btn.whatsapp {
    background: #25D366;
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 2rem;
}

.faq-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.emergency-contact {
    margin-top: 2rem;
}

.emergency-card {
    background: linear-gradient(135deg, var(--danger) 0%, #FF6B6B 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.emergency-content p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.emergency-number {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

/* Bank Accounts Page Styles */
.bank-info {
    margin-bottom: 2rem;
}

.info-card {
    background: var(--light-blue);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bank-accounts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bank-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow);
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bank-logo {
    width: 50px;
    height: 50px;
    background: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bank-name h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.bank-name p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.detail-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.copy-btn:hover {
    background: var(--accent-teal);
    transform: scale(1.05);
}

/* Bank Instructions */
.bank-instructions {
    margin-top: 2rem;
}

.bank-instructions h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.instruction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.instruction-number {
    width: 32px;
    height: 32px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.instruction-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.instruction-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 2rem 1.5rem;
    margin: -1.5rem -1.5rem 2rem -1.5rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Impact Areas */
.impact-areas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.member-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.member-info p {
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.member-info span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Certifications */
.certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: var(--light-teal);
    color: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cert-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cert-content p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Contact CTA */
.contact-cta {
    background: var(--light-teal);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-cta h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.cta-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-btn.primary {
    background: var(--primary-teal);
    color: var(--white);
    border: none;
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.cta-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 375px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .summary-card {
        grid-template-columns: 1fr;
    }
    
    .preset-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}