:root {
  --primary: #ffc300;
  --primary-dark: #e6b000;
  --primary-soft: rgba(255, 195, 0, 0.14);
  --accent: #fd704e;
  --accent-dark: #ca482a;
  --dark: #141414;
  --dark-soft: #222;
  --text: #3d3d3d;
  --text-muted: #6b7280;
  --heading: #111;
  --bg: #f7f7f8;
  --surface: #fff;
  --border: rgba(17, 17, 17, 0.08);
  --white: #fff;
  --shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 12px 40px rgba(17, 17, 17, 0.1);
  --shadow-lg: 0 24px 64px rgba(17, 17, 17, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max: 1140px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.7 "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(var(--max), 100%);
  padding-inline: clamp(1.15rem, 4vw, 1.5rem);
  margin-inline: auto;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section-eyebrow--center {
  text-align: center;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 0 2rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  text-align: center;
  color: var(--heading);
}

.section-lead {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 195, 0, 0.97);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}

.site-header.is-scrolled .nav-link {
  color: var(--dark);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.nav-brand img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active {
  background: rgba(0, 0, 0, 0.07);
  color: var(--dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 195, 0, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    color: var(--dark);
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-h);
}

.hero .flexslider {
  position: absolute;
  inset: 0;
  margin: 0;
  border: 0;
  background: var(--dark);
  overflow: hidden;
}

.flexslider .slides {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flexslider .slides > li {
  display: none;
  position: relative;
}

.flexslider .slides > li:first-child {
  display: block;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.hero .flexslider,
.hero .slides,
.hero .slides li,
.hero .slides img {
  height: 100%;
}

.hero .slides img {
  object-fit: cover;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(20, 20, 20, 0.55) 0%,
    rgba(20, 20, 20, 0.35) 45%,
    rgba(20, 20, 20, 0.75) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-text {
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: 700 0.92rem/1 "Open Sans", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(255, 195, 0, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.flex-control-nav {
  bottom: 28px;
  z-index: 3;
}

.flex-control-paging li a {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.flex-control-paging li a.flex-active {
  background: var(--primary);
  transform: scale(1.3);
}

/* About */
.section-about {
  background: var(--bg);
}

.section-title--left {
  text-align: left;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.about-copy {
  max-width: 580px;
}

.about-lead {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--heading);
}

.about-body {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.about-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text);
  line-height: 1.55;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.about-callout {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.about-callout strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--heading);
}

.about-footer-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-visual {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.about-visual-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.about-stat {
  padding: 0.85rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.about-stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.about-features {
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
}

.about-features-head {
  margin-bottom: 1.75rem;
}

.about-features-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 195, 0, 0.35);
}

.feature-card::before {
  display: none;
}

.feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #ffdb4d 100%);
  color: var(--dark);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(255, 195, 0, 0.3);
}

.feature-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
}

.feature-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-visual {
    position: static;
    max-width: 480px;
  }

  .about-visual-frame img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 0.85rem 1rem;
  }

  .about-stat-label {
    margin-top: 0;
    text-align: right;
  }
}

/* Destinations */
.section-destinations {
  background: var(--surface);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.destination-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}

.destination-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.destination-card:hover .destination-media img {
  transform: scale(1.06);
}

.destination-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.destination-card:hover .destination-zoom {
  opacity: 1;
  transform: scale(1);
}

.destination-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.4rem 1.5rem;
}

.destination-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--heading);
}

.destination-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* CTA */
.cta {
  position: relative;
  padding: clamp(4.5rem, 10vw, 6.5rem) 0;
  background: url("../images/split_airport.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.82) 0%,
    rgba(202, 72, 42, 0.55) 100%
  );
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta p {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Prices */
.section-prices {
  background: var(--bg);
}

.prices-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.prices-table-wrap {
  overflow-x: visible;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}

.prices-table thead th {
  padding: 1.1rem 1.25rem;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  vertical-align: middle;
}

.prices-table thead th:first-child {
  text-align: left;
  width: 46%;
}

.prices-table thead th:not(:first-child) {
  width: 27%;
}

.prices-table tbody td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  word-wrap: break-word;
}

.prices-table tbody tr:nth-child(even) {
  background: var(--primary-soft);
}

.prices-table tbody td:not(:first-child) {
  text-align: center;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

.prices-table tbody tr:last-child td {
  background: var(--dark);
  color: var(--white);
  border-bottom: 0;
  white-space: normal;
  font-weight: 600;
  vertical-align: middle;
}

.prices-table tbody tr:last-child td:not(:first-child) {
  text-align: center;
  font-weight: 400;
}

.prices-table tbody tr:last-child a {
  color: var(--primary);
  font-weight: 600;
}

.prices-table tbody tr:last-child a:hover {
  color: var(--white);
}

/* Contact */
.section-contact {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.75rem;
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
  width: 100%;
}

.contact-info {
  min-width: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  flex-wrap: wrap;
}

.contact-phone img {
  width: 36px;
  height: auto;
  opacity: 0.85;
}

.contact-phone.bold {
  color: var(--primary);
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-email:hover {
  color: var(--primary);
}

.contact-form-card {
  min-width: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#contact .field-full {
  grid-column: 1 / -1;
}

#contact .field-half {
  min-width: 0;
}

#contact label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 195, 0, 0.2);
}

#contact textarea {
  min-height: 110px;
  resize: vertical;
}

#contact input[type="datetime-local"],
#contact input[type="number"] {
  font-size: 16px;
}

#contact .g-recaptcha {
  transform-origin: left top;
}

#contact .send_it {
  grid-column: 1 / -1;
  width: auto;
  min-width: 160px;
  padding: 0.95rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #ffdb4d 100%);
  color: var(--dark);
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 195, 0, 0.35);
}

#contact .send_it:hover {
  background: var(--primary-dark);
}

label.error {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d32f2f;
  text-transform: none;
  letter-spacing: 0;
}

input.error,
textarea.error {
  border-color: #d32f2f !important;
}

#loading,
#response {
  display: none;
  text-align: center;
}

#loading {
  margin-top: 1rem;
}

#loading img {
  margin-inline: auto;
}

#response h3 {
  margin: 1rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--heading);
  font-size: 0.98rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-info,
  .contact-form-card {
    padding: 1.35rem 1.15rem;
  }

  #contact {
    grid-template-columns: 1fr;
  }

  #contact .field-half {
    grid-column: 1 / -1;
  }
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-facebook:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.facebook-icon {
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/facebook-white.png") center / contain no-repeat;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .prices-table {
    font-size: 0.82rem;
  }

  .prices-table thead th,
  .prices-table tbody td {
    padding: 0.65rem 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
