* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f2f2f2;
    line-height: 1.6;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* HEADER */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004482;
    padding: 1rem 2rem;
  }
  .logo-container {
    display: flex;
    align-items: center;
  }
  .logo {
    margin-right: 1rem;
    height: auto;
  }
  .site-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  .nav a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem;
  }
  .nav a:hover {
    background-color: #003366;
    border-radius: 4px;
  }
  
  /* HERO SECTION */
  .hero {
    background: url('pexels-suketdedhia-671658.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  /* BUTTONS */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
    text-align: center;
  }
  .primary-btn {
    background-color: #00adee;
    color: #fff;
  }
  .primary-btn:hover {
    background-color: #0088bb;
  }
  .secondary-btn {
    background-color: #fff;
    color: #00adee;
    border: 2px solid #00adee;
  }
  .secondary-btn:hover {
    background-color: #00adee;
    color: #fff;
  }
  
  /* MISSION SECTION */
  .mission {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
  }
  .mission h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .mission p {
    max-width: 700px;
    margin: 0.5rem auto 2rem auto;
    font-size: 1rem;
  }
  .values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .value-item {
    background-color: #f9f9f9;
    padding: 1rem;
    max-width: 180px;
    border-radius: 4px;
  }
  .value-item h4 {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  /* PRODUCTS SECTION */
  .products {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
  }
  .products h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  .product-item {
    background-color: #f9f9f9;
    padding: 1rem;
    max-width: 200px;
    border-radius: 4px;
  }
  .product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
  }
  .product-item h4 {
    margin-bottom: 0.5rem;
  }
  
  /* DONATE/GET INVOLVED SECTION */
  .donate {
    background-color: #f2f2f2;
    padding: 2rem;
    text-align: center;
  }
  .donate h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .help-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  .help-item {
    background-color: #fff;
    padding: 1rem;
    max-width: 220px;
    border-radius: 4px;
  }
  .help-item h4 {
    margin-bottom: 0.5rem;
  }
  
  /* TESTIMONIALS SECTION */
  .testimonials {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
  }
  .testimonials h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .testimonial-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .testimonial-item {
    background-color: #f9f9f9;
    padding: 1rem;
    max-width: 300px;
    border-radius: 4px;
  }
  .testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
  }
  .testimonial-item h5 {
    text-align: right;
    font-weight: normal;
  }
  
  /* CONTACT SECTION */
  .contact {
    background-color: #f2f2f2;
    padding: 2rem;
    text-align: center;
  }
  .contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .contact-details {
    margin: 0 auto 2rem auto;
    max-width: 500px;
    text-align: left;
  }
  .contact-details p {
    margin-bottom: 0.5rem;
  }
  .map-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  .map-container iframe {
    border: 0;
    width: 100%;
    max-width: 600px;
    height: 400px;
  }
  
  /* FOOTER */
  .footer {
    background-color: #004482;
    color: #fff;
    padding: 2rem;
    text-align: center;
  }
  .footer-links ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .footer-links a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem;
  }
  .footer-links a:hover {
    background-color: #003366;
    border-radius: 4px;
  }
  .social-media {
    margin-bottom: 1rem;
  }
  .social-media .social-icon {
    margin: 0 0.5rem;
    color: #fff;
    font-weight: 600;
  }
  .newsletter {
    margin-bottom: 1rem;
  }
  .newsletter form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  .newsletter input {
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  .newsletter button {
    border: none;
    cursor: pointer;
  }
  .newsletter button:hover {
    background-color: #0088bb;
  }

  .info {
    background-color: #fff;
    border-radius: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    text-align: center;
    color: #0d86ea;
    cursor: pointer;
    font-size: 20px;
  }
  
  /* Appointment Section */
  .appointment-container {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
  }
  
  .appointment-text {
    font-size: 1.2rem;
    color: #444;
    margin: 10px 0;
    line-height: 1.6;
  }
  
  .info-ap {
    background-color: #4CAF50;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .info-ap:hover {
    background-color: #45a049;
  }
  
  .info-ap:active {
    background-color: #3e8e41;
  }

  .hero-logo {
    width: 200px;
    height: auto;
    margin-top: 2rem;
  }

  #appointment {
    background-color: #fff;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  #appointment h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #appointment h2 i {
    margin-right: 0.5rem;
    color: #185191;
  }
  
  #appointment p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  #appointment a {
    color: #185191;
    text-decoration: none;
  }
  
  #appointment a:hover {
    text-decoration: underline;
  }
  /* Responsive Styles */
  @media (max-width: 900px) {
    .nav ul,
    .footer-links ul {
      gap: 0.5rem;
    }
    .product-list,
    .values,
    .help-options,
    .testimonial-carousel {
      gap: 1rem;
    }
  }

  @media (max-width: 700px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }
    .logo-container {
      margin-bottom: 1rem;
    }
    .nav ul {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }
    .footer-links ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .hero-content {
      max-width: 100%;
      padding: 0 1rem;
    }
    .product-list,
    .values,
    .help-options,
    .testimonial-carousel {
      flex-direction: column;
      align-items: center;
    }
    .product-item,
    .value-item,
    .help-item,
    .testimonial-item {
      max-width: 100%;
      width: 100%;
    }
    .map-container iframe {
      height: 250px;
    }
  }

  @media (max-width: 500px) {
    .header,
    .footer {
      padding: 1rem 0.5rem;
    }
    .hero {
      padding: 2rem 0.5rem;
    }
    .mission,
    .products,
    .donate,
    .testimonials,
    .contact {
      padding: 1rem 0.5rem;
    }
    #appointment {
      padding: 1rem 0.5rem;
    }
    .hero-content h2 {
      font-size: 1.3rem;
    }
    .hero-logo {
      width: 120px;
      margin-top: 1rem;
    }
    .newsletter form {
      flex-direction: column;
      gap: 0.5rem;
    }
    .newsletter input {
      width: 100%;
    }
  }