body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color:white ;
    color: #333;
    line-height: 1.6;
}

.main-header {
    background-color: #00172d;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 18px;
}

.main-nav {
    border-top: 2px solid #f2f2f2;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
}

.main-nav a.active {
    background-color: #0099ff;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: #0099ff;
    border-radius: 4px;
}

main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.top {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.top h1 {
    font-size: 32px;
    color: #00172d;
}

.top-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.button-group {
    margin: 30px 0;
    text-align: center;
}

.button-donate, .button-volunteer {
    display: block;
    width: 220px;
    margin: 0 auto 15px;
    padding: 14px 0;
    background-color: #0099ff;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
}

.intro, .services, .quick-actions {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.services h2, .quick-actions h2 {
    text-align: center;
    color: #00152b;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.box {
    width: 280px;
    background: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.action-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.action-box {
    width: 280px;
    background: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.main-footer {
    background-color: #00152b;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

.button-video {
    display: inline-block;
    background-color: #0099ff;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 8px;
}

a {
    color: #0099ff;
    text-decoration: none;
}

a:hover {
    color: #00172d;
    text-decoration: underline;
}

.contact-section {
  text-align: center;
  margin: auto 30px;
}

.button-contact {
  display: block;
  width: 240px;
  margin: 20px auto;
  padding: 14px 0;
  background-color: #0099ff;
  color: white;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}