/* Reset styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

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

header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container .logo {
    padding: 15px 0;
    height: 75px;
}

header .container .logo img {
    height: 100%;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    display: inline-block;
    height: 75px; /* Adjusted height to match line-height */
    line-height: 75px;
    padding: 0 15px; /* Changed padding to keep text within height */
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    color: aliceblue;
    transition: 0.5s;
}

header nav ul li a:hover {
    background-color: red;
}

.program-section {
    padding: 150px ;
}

.program-section .container {
    text-align: center;
}

.program-section .container h2{
    font-size: 50px;
    color: red;
}
.program {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.program h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.program p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.program ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.donation-tracker {
    margin-top: 30px;
}

.donation-tracker h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.progress-bar {
    background-color: #eee;
    border-radius: 5px;
    height: 20px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress {
    background-color: red;
    height: 100%;
    width: 50%; /* Adjust the width dynamically based on donation percentage */
}

button {
    background-color: red;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff9900;
}

footer {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
}
