/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/2.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Donation Information Section */
.donation-info-section {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.donation-info-section h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.donation-info-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.donation-info-section h3 {
    font-size: 1.5rem;
    color: #ff8a65;
    margin-bottom: 10px;
}

.contact-details, .account-details {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.contact-details li, .account-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
