/* More Ways to Give Section Styles */
.more-ways-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.more-ways-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.more-ways-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
     
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.donation-method {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.donation-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.donation-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
}

.donation-method:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2c5aa0, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.method-icon svg {
    width: 40px;
    height: 40px;
}

.donation-method:hover .method-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.method-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
     
    color: #2c5aa0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.method-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.disclaimer {
    background: #f8f9fa;
    border-left: 4px solid #2c5aa0;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.disclaimer p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* Desktop Layout - 4 columns as shown in image */
@media (min-width: 1024px) {
    .donation-methods {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .donation-method {
        padding: 35px 25px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .method-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .method-title {
        font-size: 20px;
    }
    
    .method-description {
        font-size: 15px;
    }
}

/* Tablet Layout */
@media (max-width: 1023px) and (min-width: 769px) {
    .donation-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Layout with Animation */
@media (max-width: 768px) {
    .more-ways-section {
        padding: 60px 0;
    }
    
    .more-ways-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .donation-methods {
        display: block;
        position: relative;
        overflow: hidden;
        height: 250px;
        margin-bottom: 0;
    }
    
    .donation-method {
        position: absolute;
        width: calc(100% - 40px);
        margin: 0 20px;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 30px 25px;
        z-index: 1;
    }
    
    .donation-method.active {
        opacity: 1;
        transform: translateX(0);
        z-index: 2;
    }
    
    .donation-method.prev {
        transform: translateX(-100%);
        opacity: 0;
        z-index: 1;
    }
    
    .donation-method.next {
        transform: translateX(100%);
        opacity: 0;
        z-index: 1;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .method-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .method-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .method-description {
        font-size: 15px;
    }
    
    .disclaimer {
        margin-top: 30px;
        padding: 15px 20px;
    }
    
    .disclaimer p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .more-ways-section {
        padding: 40px 0;
    }
    
    .more-ways-container {
        padding: 0 15px;
    }
    
    .more-ways-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .donation-methods {
        height: 280px;
    }
    
    .donation-method {
        width: calc(100% - 30px);
        margin: 0 15px;
        padding: 25px 20px;
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .method-title {
        font-size: 18px;
    }
    
    .method-description {
        font-size: 14px;
    }
}
