.info {
  margin-bottom: 20px;
  /*text-align: center;*/
}

button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

button:hover {
  background-color: #0056b3;
}

#copy-message {
  margin-top: 10px;
  color: #28a745;
  font-size: 14px;
  display: none;
}

.error {
  color: #dc3545;
}

/* ===== Testimonials Section Styling ===== */

.testo-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Inter", system-ui, Arial, sans-serif;
}

.testo-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
}

.testo-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.testo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testo-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(12, 20, 30, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(12, 20, 30, 0.1);
}

.testo-quote {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  position: relative;
}

.testo-quote::before {
  content: "“";
  font-size: 28px;
  color: #0b63c6;
  position: absolute;
  left: -10px;
  top: -8px;
}

.testo-name {
  font-weight: 600;
  color: #0b63c6;
  font-size: 0.95rem;
}

.testo-role {
  font-size: 0.83rem;
  color: #666;
}

