 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #fefefe;
      color: #222;
    }

    .contact-section {
      padding: 50px 20px;
      text-align: center;
      margin-top: 1rem;
    }

    .contact-section h4 {
      text-transform: uppercase;
      color: black;
      margin-bottom: 10px;
    }

    .contact-section h2 {
      font-size: 32px;
      font-weight: bold;
      margin: 0 0 15px;
    }

    .contact-section p {
      color: #666;
      max-width: 600px;
      margin: 0 auto 40px;
      font-size: 16px;
    }

    .contact-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .box {
      flex: 1 1 250px;
      padding: 30px 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .box:hover {
      transform: translateY(-5px);
    }

    .box-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      background-color: #FFD600;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 24px;
      color: #000;
    }

    .box h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    .box p {
      margin: 0;
      color: #333;
    }

    .white-box {
      background-color: #fff;
    }

    .yellow-box {
      background-color: #FFD600;
      color: #000;
    }

    .yellow-box p {
      color: #000;
    }

    .black-box {
      background-color: #000;
      color: #fff;
    }

    .black-box p {
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-section h2 {
        font-size: 28px;
      }
    }

	.contact-form {
  margin-top: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-form h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 90%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
  margin-left: 1rem;
}

button[type="submit"] {
  padding: 14px;
  background-color: #FFD600;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

button[type="submit"]:hover {
  background-color: #e6c200;
}

@media (max-width: 480px) {
  .contact-form h2 {
    font-size: 22px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  button[type="submit"] {
    font-size: 15px;
  }
}

.banner {
      background: url(../images/homekey.jpg) no-repeat center center/cover;
      height: 500px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay */
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
    }

    .banner-content h1 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 10px;
      margin-top: 6rem;
    }

    .breadcrumb {
      color: #fff;
      font-size: 16px;
    }

    .breadcrumb a {
      color: #FFD600;
      text-decoration: none;
      margin: 0 5px;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .banner {
        height: 420px;
        padding: 20px;
      }

      .banner-content h1 {
        font-size: 28px;
      }

      .breadcrumb {
        font-size: 14px;
      }
    }