* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.cantact_body {
  background-color: #f4f4f4;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.left-panel,
.right-panel {
  flex: 1;
  min-width: 280px;
}

.left-panel h4 {
  color: #007A6D;
  font-weight: 600;
  margin-bottom: 10px;
}

.left-panel h1 {
  color: #c6971b;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.left-panel p {
  margin-bottom: 30px;
  color: #555;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.icon {
  background-color: #007a6d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.phone-icon {
  background-image: url('https://cdn-icons-png.flaticon.com/512/455/455705.png');
}

.email-icon {
  background-image: url('https://cdn-icons-png.flaticon.com/512/561/561127.png');
}

.location-icon {
  background-image: url('https://cdn-icons-png.flaticon.com/512/684/684908.png');
}

.right-panel {
  background: #fff;
  border: 1px solid #f0d8a8;
  border-radius: 10px;
  padding: 30px;
}

.Row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.Row input,
.Row select,
textarea {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
}

.Row.full textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

.contact_button {
  background-color: #007a6d;
  color: white;
  padding: 10px 25px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: auto;
  margin-top: 10px;
}

.contact_button:hover {
  background-color: #006558;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .Row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .Row input,
  .Row select,
  .Row textarea {
    width: 100%;
  }

  .left-panel h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .icon {
    width: 32px;
    height: 32px;
    background-size: 16px;
  }

  .left-panel h1 {
    font-size: 22px;
  }

  .contact_button {
    width: 100%;
  }
}
