body {
  font-family: Arial, sans-serif;
  background-color: #f5fdf9;
  margin: 0;
  padding: 0;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  flex-wrap: wrap;
}

.contact-card {
  background-color: #f0fbf7;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.icon:hover {
  background-color: #000; /* Circular black background */
  color: #fff; /* White icon color on hover */
  transform: scale(1.1); /* Slightly enlarge the icon */
}

h3 {
  font-weight: normal;
  color: #444;
  margin: 10px 0;
}

.contact-info {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

strong {
  font-weight: bold;
}

.container-cbody {
  font-family: Arial, sans-serif;
  background-color: #d2dfce9e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.container-contactf {
  background-color: #000;
  padding: 50px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input,
textarea {
  width: 100%;
  height: 40px;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #888;
  padding-left: 10px;
}

textarea {
  height: 100px;
  resize: vertical;
}

button {
  background-color: #8dd85e !important;
  height: 50px;
  color: #000;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #ffb300 !important;
}
