/* Priocare Contact Page Styles */
.priocare-hero {
  background: #2ea44f;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.priocare-hero h1 { margin: 0 0 10px; }
.priocare-hero p { margin: 0; }

.priocare-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  text-align: center;
  gap: 20px;
}
.priocare-contact-info div {
  flex: 1;
  min-width: 260px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.priocare-form-wrap {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.priocare-form {
  max-width: 640px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.priocare-form input,
.priocare-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}
.priocare-form button {
  background: #2ea44f;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}
.priocare-form button:hover { opacity: .95; }

.priocare-map {
  padding: 60px 20px;
  text-align: center;
}
.priocare-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
}
