* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #c7c7c7;
}

/* SECTION */

.contact-section {
  padding: 80px 10%;
  text-align: center;
}

.contact-section h1 {
  color: #ff5537;
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* GRID */

.assistant-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  color: #ff5537;
}

/* CARD */

.assistant-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.assistant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.back .back-button {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.back .back-button a {
  text-decoration: none;
  background: #919191;
  color: white;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.3s;
}

.back .back-button a:hover {
  background: #ff5537;
  transform: translateY(-2px);
}

/* FOTO */

.assistant-photo {
  width: 120px;
  height: 120px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ff5537;
}

.assistant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */

.assistant-card h3 {
  margin-bottom: 5px;
}

.assistant-card p {
  color: #666;
  font-size: 14px;
}

.assistant-contact {
  margin-top: 10px;
  font-size: 13px;
}
