/* Donation Page Specific Styles */
.bwf-banner{
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('/assets/images/banners/donate-banner.jpg');
}
/* Donation Banner */
.donation-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.donation-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1531204420596-d4e8af13de26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    border-radius: 0 0 0 100px;
}

.donation-banner .banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.donation-banner .banner-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donation-banner .banner-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.donation-banner .banner-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.donation-banner .banner-breadcrumbs {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
}

.donation-banner .breadcrumb-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.donation-banner .breadcrumb-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.donation-banner .breadcrumb-links a:hover {
    color: white;
}

/* Donation Hero */
.donation-hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(227, 24, 55, 0.9), rgba(227, 24, 55, 0.95)), url('https://images.unsplash.com/photo-1531204420596-d4e8af13de26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    text-align: center;
}

.donation-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.donation-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.donation-hero .hero-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    padding-left: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}

.donation-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

/* Donation Stats Section */
.donation-stats-section {
    padding: 80px 0;
    background-color: white;
}

.donation-stats-section .section-header {
    margin-bottom: 50px;
}

.donation-stats-section .section-header h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.impact-stat {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    /* color: white; */
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background-color: var(--light);
}

.impact-section .section-header {
    margin-bottom: 50px;
}

.impact-section .section-header h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.impact-section .section-header p {
    color: var(--gray);
    font-size: 1.2rem;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.impact-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.impact-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.impact-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 80px;
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    background-color: var(--primary-light);
    padding: 10px;
    border-radius: var(--border-radius);
    display: inline-block;
}

/* Donation Options */
.donation-options-section {
    padding: 100px 0;
}

.donation-options-section .section-header {
    margin-bottom: 50px;
}

.donation-options-section .section-header h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.donation-options-section .section-header p {
    color: var(--gray);
    font-size: 1.2rem;
    text-align: center;
}

.donation-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.donation-option {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--light-gray);
}

.donation-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.donation-option.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.donation-option.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.option-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.option-header {
    background-color: var(--primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.option-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.option-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.option-price span {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.9;
}

.option-content {
    padding: 30px;
}

.option-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
    min-height: 80px;
}

.option-features {
    list-style: none;
    margin-bottom: 30px;
}

.option-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.option-features li i {
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.select-option {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.custom-amount-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.custom-amount-section h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.custom-amount-section p {
    color: var(--gray);
    margin-bottom: 30px;
}

.quick-amounts {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.quick-amount {
    padding: 15px 25px;
    background-color: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.quick-amount:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
}

.quick-amount.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.custom-amount-input {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.currency-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

#customAmount {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
}

#customAmount:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

#useCustomAmount {
    flex-shrink: 0;
    padding: 12px 25px;
}

/* Donation Form */
.donation-form-section {
    padding: 100px 0;
    background-color: var(--light);
}

.donation-form-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.donation-section-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.payment-form-wrapper .form-control {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
}

.payment-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 166, 0.25);
}

.payment-form-wrapper .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.payment-form-wrapper .form-check-label {
    font-weight: normal;
    color: var(--gray);
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95rem;
}

.payment-form-wrapper .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    border: 1px solid var(--light-gray);
}

.payment-form-wrapper .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.donation-amount-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.donation-amount-column h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.donation-amount-column .form-subtitle {
    margin-bottom: 25px;
}

.donation-options-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.donation-option-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.donation-option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.donation-option-item.featured {
    border-color: var(--secondary);
    transform: none;
}

.donation-option-item.featured:hover {
    transform: translateY(-5px);
}

.option-badge {
    position: absolute;
    top: 10px;
    right: -25px;
    background-color: var(--secondary);
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 1;
}

.donation-option-item .option-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    text-align: left;
}

.donation-option-item .option-header h4 {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
}

.donation-option-item .option-price {
    font-size: 1.8rem;
    font-weight: 800;
}

.donation-option-item .option-price span {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
}

.donation-option-item .option-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.donation-option-item .option-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
    min-height: auto;
}

.donation-option-item .option-content .option-features {
    flex: 1;
}

.donation-option-item .option-features {
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.donation-option-item .option-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray);
}

.donation-option-item .option-features li i {
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1rem;
}

.select-option {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 10px;
}

.custom-amount-section {
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid var(--primary);
}

.custom-amount-section h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.custom-amount-section p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Right Column - Form */
.donation-form-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.donation-form-column h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.donation-form-column .form-subtitle {
    margin-bottom: 20px;
}

.selected-amount-display {
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 5px solid var(--secondary);
}

.amount-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.amount-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.impact-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.impact-preview i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.impact-preview span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.selected-amount-display {
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--secondary);
}

.amount-display {
    display: flex;
    flex-direction: column;
}

.amount-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.amount-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.impact-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.impact-preview i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.impact-preview span {
    font-weight: 600;
    color: var(--dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.form-column h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.1);
}

.form-error {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.payment-option label:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.payment-option input:checked + label {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

.payment-option label i {
    font-size: 1.5rem;
    color: var(--primary);
}

.donation-note {
    display: flex;
    gap: 20px;
    background-color: #F0F7FF;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.note-icon {
    font-size: 2rem;
    color: var(--primary);
}

.note-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

.note-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.form-footer {
    border-top: 2px solid var(--light-gray);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.total-amount {
    display: flex;
    align-items: center;
    gap: 15px;
}

.total-label {
    font-size: 1.2rem;
    color: var(--gray);
}

.total-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

#submitDonation {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-note {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-note i {
    color: var(--secondary);
}

/* FCRA Section */
.fcra-section {
    padding: 60px 0;
}

.fcra-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.fcra-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.fcra-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.fcra-header h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.8rem;
}

.fcra-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.fcra-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background-color: var(--primary-light);
    padding: 25px;
    border-radius: var(--border-radius);
}

.fcra-detail {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.detail-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Tax Benefits */
.tax-benefits-section {
    padding: 100px 0;
    background-color: var(--light);
}

.tax-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tax-benefit {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tax-benefit:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tax-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.tax-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tax-content p {
    color: var(--gray);
    line-height: 1.6;
}

.tax-note {
    background-color: #FFF9E6;
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.note-icon {
    font-size: 1.5rem;
    color: #FFC107;
    margin-top: 3px;
}

.tax-note p {
    margin: 0;
    color: var(--dark);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
}

.trust-content {
    background-color: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.trust-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.trust-text p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

.trust-quote {
    font-style: italic;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    padding-left: 20px;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .donation-hero h1 {
        font-size: 2.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .donation-form-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .donation-option.featured {
        transform: scale(1);
    }

    .donation-option.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .donation-hero {
        padding: 140px 0 80px;
    }
    
    .donation-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-quote {
        font-size: 1.2rem;
    }
    
    .impact-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .impact-stat {
        width: 100%;
        max-width: 300px;
    }
    
    .donation-options-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-form-container {
        padding: 30px;
    }
    
    .selected-amount-display {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .form-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .trust-icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .donation-hero h1 {
        font-size: 1.8rem;
    }
    
    .quick-amounts {
        gap: 10px;
    }
    
    .quick-amount {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .custom-amount-input {
        flex-direction: column;
    }
    
    #customAmount {
        width: 100%;
    }
}