* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}
.nav-title {
    font-size: 22px;
    font-weight: bold;
}
.btn-signin {
    color: #1a6b4a;
    border-color: #1a6b4a;
    padding: 10px 25px;
    border: 1px solid #333;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    font-size: 16px;
}

/* BANNER */
.banner {
    background-color: #d4f0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}
.banner-subtitle {
    color: #555;
    margin-bottom: 10px;
}
.banner-title {
    font-size: 38px;
    font-weight: bold;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.3;
}
.btn-primary {
    background-color: #1a6b4a;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.banner {
    background-color: #d4f0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    margin: 0 40px;
    border-radius: 20px;
}


.banner img {
    width: 400px;
    max-width: 45%;
}
/*second page*/
.pillars-section{
    padding: 60px;
}
.pillars-title{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
}
.second{
    display: flex;
    gap: 20px;
}
.second-bar {
    flex: 1;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    border-radius:10%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.second-bar img {
    width: 45px;
    margin-bottom: 15px;
}
.second-h {
    font-size: 18px;
    margin-bottom: 10px;
}
.second-p {
    color: #666;
    font-size: 14px;
}

.vision-section {
    padding: 60px;
    background-color: #f9f9f9;
}
.vision-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}
.vision-desc {
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
}
.vision-cards {
    display: flex;
    gap: 20px;
}
.vision-card {
    flex: 1;
    border-radius: 10px;
    padding: 25px;
}
.vision-card img {
    width: 45px;
    margin-bottom: 15px;
}
.vision-h {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.vision-p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}
.vision-blue { background-color: #dce8f5; }
.vision-green { background-color: #d4f0e0; }
.vision-yellow { background-color: #fef3cd; }

.btn-blue {
    background-color: #3a7bd5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-green {
    background-color: #1a6b4a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-yellow {
    background-color: #f0a500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.news-section {
    padding: 60px;
}
.news-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}
.news-desc {
    color: #666;
    margin-bottom: 30px;
}
.news-card {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}
.news-img {
    width: 220px;
    border-radius: 10px;
    object-fit: cover;
}
.news-content {
    flex: 1;
}
.news-h {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.news-logo {
    width: 80px;
}
.news-date {
    color: #888;
    font-size: 13px;
}
.news-p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}
.donate-section {
    padding: 60px;
    text-align: center;
    background-color: #f9f9f9;
}
.donate-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}
.donate-desc {
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.donate-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}
.donate-card {
    padding: 20px 40px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: white;
}
.donate-active {
    background-color: #d4f0e0;
    border-color: #1a6b4a;
}
.donate-input {
    width: 100%;
    max-width: 700px;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.donate-btn-wrap {
    margin-top: 10px;
}
.newsletter-section {
    padding: 60px;
    background-color: #d4f0e0;
    text-align: center;
}
.newsletter-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}
.newsletter-desc {
    color: #555;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto 15px auto;
}
.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    border-right: none;
}
.newsletter-form .btn-primary {
    border-radius: 0 5px 5px 0;
}
.newsletter-note {
    color: #666;
    font-size: 13px;
}

.footer {
    padding: 40px 60px;
    text-align: center;
    border-top: 1px solid #eee;
}
.footer-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-icons img {
    width: 30px;
}
