body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #007BFF, #ADD8E6);
  color: #333;
}

.header {
  background-color: #003366;
  padding: 20px;
  text-align: center;
  color: white;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.breadcrumbs {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: #333;
  margin: 20px auto;
  padding: 10px 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.breadcrumbs a {
  background-color: #3498db;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  text-align: center;
  font-size: 0.8rem;
}

.breadcrumbs a:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.breadcrumbs a:active {
  background-color: #1abc9c;
  transform: scale(1);
}

.breadcrumbs > a:last-child {
  background-color: #7f8c8d;
  cursor: default;
  color: white;
}

.how-can-help {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.75rem;
  }

  .breadcrumbs a {
    min-width: 50px;
    min-height: 50px;
  }
}

.main-content {
  padding: 40px 20px;
  text-align: center;
  background: #ffffffdd;
  margin: 20px auto;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page-title {
  font-size: 2.4em;
  margin-bottom: 25px;
  color: #003366;
}

.extra-img {
  height: auto;
  width: 45%;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.graphic-placeholder {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  max-width: 100%;
  box-sizing: border-box;
}

.graphic-img {
  width: 40%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.packages {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.package {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 30%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.package h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.package p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.package ul {
  text-align: left;
  margin-bottom: 15px;
}

.package ul li {
  font-size: 1rem;
  color: #7f8c8d;
}

.package .cta-button {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.package .cta-button:hover {
  background-color: #2980b9;
}

.package .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .packages {
    flex-direction: column;
    align-items: center;
  }

  .package {
    width: 80%;
    margin-bottom: 20px;
  }
}

.social-icons {
  margin: 100px auto 40px auto;
  text-align: center;
  font-size: 0.9em;
  color: #555;
}

.social-icons p {
  margin-bottom: 15px;
  color: #333;
}

.social-icons .cta-button {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 20px;
  background: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9em;
  transition: background 0.3s ease;
  width: auto;
}

.social-icons .cta-button:hover {
  background: #0056b3;
}

.social-icons a {
  display: inline-block;
  margin: 10px;
}

.contact-info {
  background: #f9f9f9;
  padding: 30px;
  font-size: 1em;
  color: #555;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 20px auto 0;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.contact-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

.contact-form .cta-button {
  background-color: #3498db;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.contact-form .cta-button:hover {
  background-color: #2980b9;
}


.footer {
  background: #333;
  color: white;
  padding: 15px;
  font-size: 0.9em;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
