/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Alliance Section */
.alliance-info {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 40px 20px;
}

.info-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #83eb57;
}

.info-section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section p {
    color: #5a6c7d;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-section ul {
    color: #5a6c7d;
    font-size: 1.1em;
    line-height: 1.7;
    padding-left: 20px;
}

.info-section li {
    margin-bottom: 8px;
}

/* Buttons */
.cta-section {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #83eb57 0%, #5bbd2a 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(131, 235, 87, 0.18);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 235, 87, 0.28);
    text-decoration: none;
    color: white;
}

/* Donation Button */
.donation-button {
    display: inline-block;
    background: linear-gradient(135deg, #83eb57 0%, #5bbd2a 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(131, 235, 87, 0.18);
    margin-top: 20px;
}

.donation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 235, 87, 0.28);
    text-decoration: none;
    color: white;
}