* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #cc3366;
  padding: 1rem 2rem;
}

.site-header {
  text-align: center;
  padding: 20px;
}

.header-logo {
  width: 80px;
  height: auto;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffccdd;
}

.donate-btn {
  background: #ff69b4;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: white;
}
.button-container {
  text-align: center;
  margin: 20px 0;
}

.get-help-button {
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.get-help-button:hover {
  background-color: #d62828;
}

/* Default styles (desktop first) */
body {
  font-size: 18px;
  padding: 20px;
}

/* Tablet view */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  body {
    font-size: 14px;
    padding: 10px;
  }
}



body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.hero {
  background: url('https://storage.e.jimdo.com/cdn-cgi/image/quality=85,fit=scale-down,format=auto,trim=0;0;0;0,width=1280,height=720/image/520296901/a4011edf-a922-4c81-8558-ee70d398cb65.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dim background image */
  z-index: 1;
}

.featured-image {
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

.featured-image img {
  width: 350px; /* Or any size you want */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}



.mission {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #fff0f5;
  border-left: 6px solid #cc3366;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  color: #333;
}

.mission p {
  margin-bottom: 1.2rem;
}

.offerings {
  background-color: #fef6fa;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.offerings h2 {
  color: #cc3366;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.offering-item {
  margin-bottom: 2rem;
}

.offering-item h3 {
  font-size: 1.4rem;
  color: #993366;
  margin-bottom: 0.5rem;
}

.offering-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.mission {
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff0f5;
  border-left: 6px solid #cc3366;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.mission h2 {
  color: #cc3366;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #cc3366;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #a82b59;
}


.btn {
  padding: 0.75rem 1.5rem;
  background: #ff69b4;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  margin-bottom: 1rem;
  color: #cc3366;
}

ul {
  list-style: square;
  padding-left: 20px;
}

blockquote {
  font-style: italic;
  margin: 1rem 0;
  background: #fff0f5;
  padding: 1rem;
  border-left: 4px solid #ff69b4;
}

form {
  display: flex;
  flex-direction: column;
}

<style>
  .founder-photo {
    width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
</style>




input, textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #cc3366;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
}
.volunteers {
  background-color: #fff8fc;
  padding: 2.5rem;
  margin: 3rem auto;
  border-left: 6px solid #cc3366;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  max-width: 800px;
}

.volunteers h2 {
  color: #cc3366;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.volunteers p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
}

.external-image {
  text-align: center;
  padding: 2rem;
}

.external-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.flyer {
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
}

.flyer img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #cc3366;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #a82b59;
}


.footer-social {
  text-align: center;
  margin-top: 1rem;
}

.footer-social img {
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}
