body{
    font-family: 'Segoe UI',sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.navbar-brand{
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
}
.navbar-brand img{
    margin-right: 10px;
    border-radius: 50%;
}
.nav-link{
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}
.nav-link:hover{
    color: #007bff;
}
.hero-section{
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.hero-section .container,
.hero-section h1,
.hero-section p{
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-section h1{
    font-size: 2.8rem;
    font-weight: bold;
}
.hero-section p{
    font-size: 1.2rem;
}
.info-box{
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
}
.info-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
}
.info-box h4{
    color: #2d6a4f;
    font-weight: 700;
    margin-bottom: 15px;
}
.info-box p{
    color: #555;
}
section.text-center.bg-light{
    background-color: #f8f9fa;
    padding: 60px 0;
}

.donate-section{
    padding: 50px 0;
    background-color: #e7f3e7;
}
.donate-section h2{
    color: #2d6a4f;
    font-weight: 700;
}
.donate-section p{
    color: #555;
}
.donate-section img{
    max-width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}
footer{
    background-color: #222;
    color: #fff;
    font-size: 14px;
}
.volunteer-hero{
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 50px;
}
.volunteer-hero .overlay{
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    padding-top: 100px;
    padding-bottom: 100px;
}
.form-wrapper{
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.volunteer-form{
    background-color: rgba(255,255,255,0.97);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    width: 100%;
    max-height: 500px;
    transition: all 0.3s ease-in-out;
}
.volunteer-form:hover{
    transition: scale(1.02);
}
.volunteer-form h2{
    margin-bottom: 25px;
    font-weight: 700;
    color: #333;
}
.volunteer-form .form-control{
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
}
.volunteer-form .btn{
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}