/* Basic Reset and Global Styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Improves box sizing behaviour */
    font-family: sans-serif; /* Use a generic sans-serif font */
}
body {
  background-color: #f9f9f9;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Header Styling */
header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
nav a:hover {
    color: #007bff;
}
/* Hero Section */
.hero {
    background-color: #eaf4ff;
    text-align: center;
    padding: 50px 0;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}
.hero .btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}
.btn.primary {
  background-color: #007bff;
    color: white;
}
.btn.primary:hover {
    background-color: #0056b3;
}

/* Content Section */
.content {
  margin-top: 40px;
    margin-bottom: 40px;
}
.content-block {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
   box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}
.content-block p {
   color: #555;
   line-height: 1.6;
}
.content-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 15px auto;
}
/* Donation Section */
.donation {
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.donation h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
.donation form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.donation input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
/* Progress Section */
.progress {
  padding: 40px 0;
    background-color: #eaf4ff;
}
.progress h3 {
    margin-bottom: 10px;
}
.progress-bar-container {
    margin-bottom: 20px;
}
.progress-bar {
  height: 20px;
  background-color: #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
    background-color: #007bff;
    border-radius: 10px;
}
.progress-counter {
  margin-top: 5px;
    text-align: right;
}
.numbers-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
    text-align: center;
}
.numbers-box {
     padding: 20px;
    border-radius: 8px;
    background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.number {
    font-size: 2rem;
    font-weight: bold;
     color: #333;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
       width: 95%;
    }
    header .container{
         flex-direction: column;
      gap: 10px;
    }
      .hero h1 {
          font-size: 2rem;
       }
  .donation form {
       flex-direction: column;
    gap: 15px;
     align-items: stretch;
  }
}