.biut-pv-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background: #ffffff;
  box-sizing: border-box;
}

.biut-pv-section *,
.biut-pv-section *::before,
.biut-pv-section *::after {
  box-sizing: border-box;
}

.biut-pv-header {
  text-align: center;
  margin-bottom: 40px;
}

.biut-pv-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C41E3A;
  margin-bottom: 10px;
}

.biut-pv-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin: 0;
}

.biut-pv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .biut-pv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.biut-pv-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.biut-pv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C41E3A, #111827);
  opacity: 0.9;
}

.biut-pv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(196, 30, 58, 0.12);
  border-color: rgba(196, 30, 58, 0.25);
}

.biut-pv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C41E3A, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.18);
}

.biut-pv-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}

.biut-pv-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.biut-pv-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 18px 0;
}

.biut-pv-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.biut-pv-phone:hover {
  background: #C41E3A;
  transform: translateY(-2px);
}

.biut-pv-phone svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

.biut-pv-schedule {
  background: #ffffff;
  border: 1px solid rgba(196, 30, 58, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.biut-pv-schedule-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.biut-pv-schedule-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C41E3A, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.18);
}

.biut-pv-schedule-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.biut-pv-schedule-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.biut-pv-schedule-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 4px 0 0 0;
}

.biut-pv-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(196, 30, 58, 0.1);
}

.biut-pv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 15px;
}

.biut-pv-table thead {
  background: #111827;
  color: #ffffff;
}

.biut-pv-table th {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: left;
  padding: 16px 18px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.biut-pv-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(196, 30, 58, 0.08);
  color: #374151;
  vertical-align: top;
}

.biut-pv-table tr:nth-child(even) {
  background: rgba(196, 30, 58, 0.03);
}

.biut-pv-table tr:last-child td {
  border-bottom: none;
}

.biut-pv-day {
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.biut-pv-clinic {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.biut-pv-tag {
  display: inline-block;
  background: rgba(196, 30, 58, 0.08);
  color: #C41E3A;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(196, 30, 58, 0.12);
}

.biut-pv-footnotes {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: #6b7280;
}

.biut-pv-footnotes strong {
  color: #111827;
}

@media (max-width: 640px) {
  .biut-pv-title {
    font-size: 26px;
  }

  .biut-pv-card,
  .biut-pv-schedule {
    padding: 22px;
  }

  .biut-pv-table th,
  .biut-pv-table td {
    padding: 14px 12px;
    font-size: 14px;
  }
}
