@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #111;
  color: white;
}
nav .logo img {
  height: 50px;
  width: auto;
}

nav {
  background-color: #002147;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

nav .logo {
  color: limegreen;
  font-weight: bold;
  font-size: 22px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav .donate-btn {
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 50px;
}

.hero {
  background: url("images/header.jpg") center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-text h1 {
  font-size: 50px;
  margin: 0;
}

.hero-text p {
  font-size: 18px;
}

.hero-text h2 {
  margin-top: 30px;
  font-size: 30px;
}

.arrow {
  font-size: 30px;
  margin-top: 20px;
}

.how {
  background-color: #222;
  padding: 80px 20px;
}

.about {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.how-content {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin-left: 20%;
  flex-wrap: wrap;
}

.how-content img {
  width: 140px;
  margin: 0;  margin-right: 30px;
}

.text-how {
  text-align: center;
  flex: 1;
}

.security {
  background-color: #002b7f;
  padding: 80px 20px;
}

.security-content {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin-left: 20%;
  flex-wrap: wrap;
}

.security-content img {
  width: 140px;
  margin-right: 30px;
}


.security-content .text {
  text-align: center;
  flex: 1;
}

.people {
  background-color: #111;
  text-align: center;
  padding: 80px 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.gallery img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px;
  object-fit: cover;
}

.reviews {
  background-color: #1c8a2b;
  text-align: center;
  padding: 80px 20px;
}
.review-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.review {
  max-width: 500px;
  text-align: center;
}

.arrow-btn {
  background: none;
  border: 2px solid white;
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.arrow-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


.stars {
  font-size: 25px;
  margin: 10px 0;
}

.donations {
  background-color: #111;
  margin-right: 212px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 20px;
}

.donations-left {
  flex: 1;
  margin-left: 192px;
  min-width: 250px;
  padding: 20px;
}

.donations-form {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background-color: #002b7f;
  border-radius: 10px;
}

.donations-form form {
  display: flex;
  flex-direction: column;
}

.donations-form input {
  margin: 8px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.donations-form button {
  background-color: #1c8a2b;
  margin-top: 10px;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.contact {
  background-color: #111;
  margin-right: 212px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 20px;
}

.contact-info {
  flex: 1;
  margin-left: 192px;
  min-width: 250px;
  padding: 20px;
}

.contact-form {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background-color: #002b7f;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input {
  margin: 8px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background-color: #1c8a2b;
  margin-top: 10px;
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
