  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
    }

    /* Navbar */
    .navbar {
      background: #fdfbf7;
      padding: 15px 30px;
    }
    .navbar-nav .nav-link {
      color: #e75425 !important;
      font-weight: 500;
      margin-right: 20px;
    }
    .donate-btn {
      background: #ff9800;
      padding: 8px 18px;
      border-radius: 25px;
      color: #fff !important;
      text-decoration: none;
      font-weight: bold;
    }

    /* Hero / Banner */
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      background: #fff;
    }
    .hero img {
      width: 100%;
      max-width: 850px;
      height: auto;
    }
    .hero-text {
      padding: 20px;
      text-align: center;
    }
    .hero-text h1 {
      font-size: 5rem;
      font-weight: 1000;
    }
    .hero-text .arrow-btn {
      display: inline-block;
      margin-top: 20px;
      background: #e75425;
      color: #fff;
      font-size: 2rem;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      text-decoration: none;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero img {
        max-width: 100%;
      }
    }
    
        .about-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
    }

    .about-text {
      max-width: 55%;
    }

    .about-text h2 {
      font-size: 36px;
      color: #e46f5e;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.6;
      color: #333;
    }

    .about-text a {
      color: #e46f5e;
      text-decoration: none;
      font-weight: bold;
    }

    .about-text a:hover {
      text-decoration: underline;
    }

    .about-image {
      max-width: 35%;
    }

    .about-image img {
      width: 100%;
      height: auto;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .about-text, .about-image {
        max-width: 100%;
      }
      .about-image {
        margin-top: 20px;
      }
    }
    .application-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.application-image {
  flex: 1;
}

.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-content {
  flex: 1;
  background: #fff;
  padding: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.application-content h2 {
  font-size: 36px;
  color: #e46f5e;
  margin-bottom: 20px;
}

.application-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.apply-btn {
  background: #e46f5e;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #d85e4e;
}

/* Responsive */
@media (max-width: 768px) {
  .application-section {
    flex-direction: column;
  }
  .application-content {
    padding: 30px;
    text-align: center;
  }
}

.available-cats {
  position: relative;
  background: url('images/11062b_ce8f6a044ea1430cbd1581bc2f9b6cd1~mv2.avif') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.available-overlay {
  background: #fff;
  padding: 50px;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.available-overlay h2 {
  font-size: 36px;
  color: #e46f5e;
  margin-bottom: 20px;
}

.available-overlay p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.look-btn {
  background: #e46f5e;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.look-btn:hover {
  background: #d85e4e;
}

/* Responsive */
@media(max-width: 768px) {
  .available-cats {
    height: auto;
    padding: 50px 20px;
  }
  .available-overlay {
    padding: 30px;
  }
}

.site-footer {
  background: #333;
  color: #fff;
  padding: 50px 10% 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-container div {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-about h3 {
  margin-bottom: 15px;
  color: #e46f5e;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  color: #e46f5e;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #e46f5e;
}

.footer-contact a {
  color: #e46f5e;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 15px;
  font-size: 14px;
}
  </style>