:root {
  --bg: #eef7f0;
  --surface: #ffffff;
  --surface-soft: #f5fcf7;
  --text: #0f172a;
  --muted: #546574;
  --primary: #0f766e;
  --secondary: #14b8a6;
  --accent: #22c55e;
  --primary-contrast: #ffffff;
  --border: #d9ede8;
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 26%), #f8fbff;
  color: var(--text);
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

button:hover {
  transform: translateY(-1px);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 2.5rem;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--primary);
}

.hero-section {
  padding: 5.5rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 30%), #f8fbff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.hero-content>div:first-child {
  max-width: 44rem;
}

.hero-subtitle {
  color: var(--text);
  max-width: 42rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.hero-badges li {
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stats div {
  padding: 1.1rem 1.35rem;
  border-radius: 1.5rem;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.18);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-image {
  border-radius: 2.25rem;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.13);
  background: linear-gradient(180deg, #eff6ff 0%, #e0f2fe 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.04);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 3vw, 3.8rem);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2vw, 2.6rem);
}

p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 18px 35px rgba(15, 118, 110, 0.18);
}

.btn-primary:hover {
  background: #0e6d60;
}

.btn-secondary {
  background: #eff6ff;
  color: var(--primary);
}

.btn-secondary:hover {
  background: #dbeafe;
}

.section {
  padding: 4rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header p {
  margin-bottom: 0.75rem;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.14);
}

.card h3 {
  margin: 0 0 1rem;
}

.card span {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-card {
  min-height: 240px;
}

.team-section {
  background: linear-gradient(180deg, #f0faf7 0%, #f8fbff 50%, #edf7f4 100%);
  position: relative;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(15, 118, 110, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.team-section .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Doctor Card ── */
.doctor-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.25rem 1.5rem 1.75rem;
  background: linear-gradient(170deg, #edf9f6 0%, #f7fdfb 100%);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.3s ease;
  animation: cardFadeIn 0.6s ease both;
}

/* Green accent bar top center */
.doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  border-radius: 0 0 6px 6px;
  transition: width 0.35s ease;
}

.doctor-card:hover::before {
  width: 4.5rem;
}

.doctor-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 20px 50px rgba(15, 118, 110, 0.12),
    0 0 0 1px rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.2);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Doctor Photo ── */
.doctor-avatar {
  width: 8.5rem;
  height: 8.5rem;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 3px solid rgba(15, 118, 110, 0.12);
  box-shadow:
    0 6px 18px rgba(15, 118, 110, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.doctor-card:hover .doctor-avatar {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.16);
  border-color: rgba(15, 118, 110, 0.25);
}

.doctor-avatar-placeholder {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 1.1rem;
  border: 3px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.1);
  background: linear-gradient(145deg, #ddf3ef, #c8ece5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  margin-bottom: 1.25rem;
}

.doctor-card:hover .doctor-avatar-placeholder {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.16);
}

.doctor-avatar-placeholder svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.4;
}

/* ── Card Text ── */
.doctor-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 700;
}

.doctor-card span {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  margin-top: auto;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(15, 118, 110, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.doctor-card:hover span {
  box-shadow: 0 5px 16px rgba(15, 118, 110, 0.3);
  transform: translateY(-1px);
}

/* ── Group Layout ── */
.doctor-groups {
  display: grid;
  gap: 3rem;
}

.doctor-group {
  padding: 0.5rem 0;
}

.slider-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.doctor-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.doctor-slider article {
  height: 100%;
}

/* ── Group Title ── */
.group-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 800;
  position: relative;
  padding-left: 1rem;
}

.group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.6rem;
  background: linear-gradient(180deg, #0f766e, #14b8a6);
  border-radius: 4px;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7f4 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-image {
  width: 100%;
  max-width: 520px;
  margin: 0 0 1.5rem;
  border-radius: 1.75rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
  position: relative;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.contact-image-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 61, 55, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.contact-image-badge.wa-badge {
  background: rgba(18, 140, 126, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-image-badge.wa-badge:hover {
  background: #128c7e;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
}

.wa-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 110, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 110, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 110, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 110, 0);
  }
}

.contact-image:hover img {
  transform: scale(1.03);
}

.contact-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-left-color: var(--accent);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.08);
}

.contact-icon-wrapper {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.contact-item:hover .contact-icon-wrapper {
  background: var(--primary);
  color: #ffffff;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-text strong {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-text span {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  box-shadow: 0 35px 80px rgba(15, 118, 110, 0.08);
}

.form-title {
  margin: 0 0 0.25rem;
  font-size: 1.6rem;
  color: var(--text);
}

.form-desc {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  background: #f8fbff;
  color: var(--text);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.25);
}

.btn-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.btn-submit:hover::after {
  left: 125%;
  opacity: 1;
  transition: all 0.75s ease;
}

.btn-icon {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.2s ease;
}

.btn-submit:hover .btn-icon {
  transform: translate(3px, -1px);
}

/* Site Footer */
.site-footer {
  background: radial-gradient(circle at top left, #0e524a, #072522);
  color: #a5c5c0;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
}

.footer-logo img {
  width: 2.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #a5c5c0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #a5c5c0;
  transition: background-color 0.25s, color 0.25s, transform 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-links h4,
.footer-contact-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact-info h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: #a5c5c0;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  font-size: 0.95rem;
  width: fit-content;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-info p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-info strong {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #81a8a2;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #81a8a2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.back-to-top:hover {
  color: #ffffff;
}

.arrow-up-icon {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.2s ease;
}

.back-to-top:hover .arrow-up-icon {
  transform: translateY(-3px);
}

@media (max-width: 920px) {

  .hero-content,
  .contact-grid,
  .footer-grid,
  .cards-grid,
  .team-section .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctor-slider {
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    overflow-x: auto;
    padding: 1.5rem 1rem;
    margin: -1.5rem -1rem;
    scroll-snap-type: x mandatory;
  }

  .doctor-slider article {
    scroll-snap-align: start;
  }

  .doctor-slider::-webkit-scrollbar {
    height: 6px;
  }

  .doctor-slider::-webkit-scrollbar-thumb {
    background: rgba(15, 118, 110, 0.25);
    border-radius: 999px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-badges {
    flex-direction: column;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .nav-menu {
    width: 100%;
    justify-content: space-between;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .doctor-slider {
    grid-auto-columns: 82vw;
    gap: 1rem;
    padding: 1.25rem 1rem;
    margin: -1.25rem -1rem;
  }

  .doctor-slider::-webkit-scrollbar {
    display: none;
  }

  /* ================= PROMO ================= */

  .promo-grid {
    display: flex;
    justify-content: center;
  }

  .promo-card {
    width: 250px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  }

  .promo-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .promo-content {
    padding: 15px;
    text-align: center;
  }

  .promo-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .promo-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .promo-content .btn {
    width: auto;
  }

}