* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.top-header {
    background-color: #006633;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.left-links a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.left-links a:hover {
    color: #ffd700;
}

.contact-info span {
    margin-left: 15px;
    font-size: 14px;
}

.logo-section {
    text-align: center;
    padding: 20px;
    background-color: white;
}

.logo-section img {
    max-width: 150px;
    vertical-align: middle;
    max-width: 45%;
    height: auto;
}

.logo-section h1 {
    display: inline-block;
    color: #006633;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 15px;
}

.main-nav {
    background-color: #006633;
    padding: 10px 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    display: block;
    transition: background-color 0.3s;
}

.main-nav ul li a:hover {
    background-color: #004d26;
}

.content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-section h2 {
    color: #006633;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.donation-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.image-wrapper {
    position: relative;
    max-width: 585px; /* Half of 1170px for better display */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.donation-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.image-wrapper:hover .donation-image {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 102, 51, 0.8);
    padding: 15px;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.image-wrapper:hover .overlay {
    transform: translateY(0);
}

.overlay span {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffd700;
    color: #006633;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #e6c200;
}

.donation-info {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.donation-info h3 {
    color: #006633;
    margin-bottom: 15px;
}

.donation-info ul {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.donation-info ul li {
    margin-bottom: 10px;
}

.donation-info a {
    color: #006633;
    text-decoration: none;
}

.donation-info a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #006633;
    color: white;
    padding: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-links ul {
    list-style: none;
}

.quick-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: #ffd700;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: white;
    color: #006633;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
    background: #ffd700;
}

.footer-copy {
    text-align: center;
    margin-top: 20px;
}

