/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0066B3 0%, #1d4ed8 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero .lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
/* Donation Specific Styles */
.donation-intro {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro-text-box {
    font-size: 1.1rem;
    line-height: 1.8;
}

.donation-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.donation-benefits li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.donation-benefits i {
    color: #28a745;
    margin-right: 10px;
}

.donation-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    overflow: hidden;
}

.donation-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #007bff;
}

.donation-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.donation-title {
    font-size: 1rem;
    color: #FF8C00;
    margin-bottom: 0.5rem;
}

.donation-organization {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
    margin: 0;
}

.donation-form {
    padding: 2rem;
}

.amount-selection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 1.5rem;
}

.amount-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1.2rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amount-btn:hover {
    background: #e9ecef;
    border-color: #007bff;
    transform: translateY(-2px);
}

.amount-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.amount-btn.active .amount-currency {
    color: #fff;
}

.amount-value {
    font-size: 1.3rem;
    font-weight: bold;
    display: block;
}

.amount-currency {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.amount-other {
    background: #fff;
    border: 2px dashed #dee2e6;
}

.custom-amount-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-amount-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1rem;
    font-size: 1.2rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    outline: none;
}

.currency-label {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #6c757d;
}

.monthly-donation {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.monthly-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.monthly-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.monthly-text {
    font-size: 0.95rem;
    color: #495057;
}

.paypal-buttons-container {
    margin-top: 1.5rem;
}

.btn-paypal,
.btn-card {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-paypal {
    background: #FFC439;
    color: #003087;
}

.btn-paypal:hover {
    background: #FFB900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 196, 57, 0.4);
}

.btn-paypal i {
    font-size: 1.3rem;
    margin-right: 8px;
}

.btn-card {
    background: #fff;
    color: #003087;
    border: 2px solid #003087;
}

.btn-card:hover {
    background: #003087;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 48, 135, 0.3);
}

.donation-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.back-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.95rem;
}

.back-link:hover {
    text-decoration: underline;
}

.info-box {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 2rem;
    color: #fff;
}

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-box p {
    color: #6c757d;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .amount-selection {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .amount-value {
        font-size: 1.1rem;
    }
    
    .donation-organization {
        font-size: 1.5rem;
    }
}

/* SYSTEMA SEZIONE INFO - ORIZZONTALE E CENTRATA */
.info-section-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
	margin-top:40px;
}

/* Limita la larghezza delle box per un allineamento perfetto */
.info-section-row .info-box {
    flex: 1;
    max-width: 350px;
    min-width: 250px;
}

.five-per-mille-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.five-per-mille-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #0066B3;
}

.five-per-mille-list li {
    margin-bottom: 10px;
    color: #0066B3;
}

.bullet-icon{
	display:inline-block;margin:0 5px;vertical-align:middle;
}