/* Banner */
.banner {
  background-size: cover;
  background-position: top;
  padding: 170px 0;
}

.banner h1 {
  margin: 0;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  font-size: 32px;
  font-weight: bold;
}

.banner p {
  font-size: 20px;
  color: white;
  opacity: .7;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}


/* Body */
body {
  /* background: #254441; Muted dark teal */
  text-align: center;
  background: #F4F4F4;
}

a {
  color: #1C7C54;
  font-size: 20px;
  text-decoration: none;
  font-family: "Rowdies", sans-serif;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: red;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-radius: 25px;
  padding: 0 16px;
}

.card-white {
  padding: 30px 16px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 6px rgba(0,0,0,0.06);
  background: #f8fafc;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card-white:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 3px 8px rgba(0,0,0,0.09);
}

.card-white h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #1C7C54;
}
.card-white h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1C7C54;
}
.card-white p {
  color: #333;
  font-weight: light;
  padding: 0 30px 0 30px;
}

.card-white {
  transition: transform 0.15s, box-shadow 0.15s;
}
/* .card-white:hover {
  transform: translateY(-4px) scale(1.02);
} */

.list-inline {
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding: 0px 15px;
}

.social-icons {
  font-size: 24px;
}

.social-icons:hover {
  color:red;
  /* transform: scale(1.5); */
}

/* Footer */
.footer {
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0px 50px;
  color: rgba(0,0,0,0.3);
}
.footer-links {
  display: flex;
  align-items: center;
}
.footer-links a {
  color: black;
  opacity: 1;
  text-decoration: none;
  font-size: 24px;
  padding: 0px 10px;
}
.footer-links a:hover {
  opacity: 1;
  color: red;
}

/* For smaller screens */
@media (max-width: 768px) {

}
