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

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background-color: #f1f5f9;
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background-color: #0f766e;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0 0.75rem 0.75rem 0;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1rem 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.75rem;
  gap: 1.5rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f8fafc;
  text-decoration: none;
  justify-content: center;
}

.site-header__title {
  letter-spacing: 0.04rem;
}

.site-header__brand:hover,
.site-header__brand:focus-visible {
  text-decoration: none;
  color: #a7f3d0;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(15, 118, 110, 0.1);
}

.site-header__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__nav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  color: #f8fafc;
  background: rgba(15, 118, 110, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
  outline: none;
}

.site-header__link.is-active,
.site-header__link[aria-current="page"] {
  background: rgba(15, 118, 110, 0.4);
  color: #f8fafc;
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .site-header__nav {
    justify-content: center;
  }
}

a {
  color: #0f766e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  background: radial-gradient(circle at top right, #0f172a, #134e4a);
  color: #ffffff;
  padding: 3rem 0 2rem;
}

.hero__content {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hero__lead {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
  color: #a7f3d0;
  font-weight: 600;
}

.search-panel {
  background-color: rgba(15, 23, 42, 0.72);
  padding: 1.5rem;
  border-radius: 1rem;
  display: grid;
  gap: 1rem;
  backdrop-filter: blur(6px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group select {
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid #34d399;
  border-color: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-check input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.4rem;
  border: none;
}

.form-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #052e16;
}

.btn-secondary {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #ffffff;
}

.btn-outline {
  border: 1px solid #1e293b;
  color: #1e293b;
  background: transparent;
}

.btn-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.65rem 0.5rem;
}

main {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.page-section {
  padding: 3rem 0;
}

.page-surface {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.page-content {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.page-content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1vw + 1.3rem, 2rem);
  color: #0f172a;
}

.page-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.page-content p {
  margin: 0;
  color: #1f2937;
}

.page-content p + p {
  margin-top: 0.75rem;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.page-card {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.6), rgba(236, 253, 245, 0.95));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.page-card p {
  margin: 0;
  color: #1f2937;
}

.page-list {
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.75rem;
  color: #1f2937;
}

.page-list li {
  line-height: 1.6;
}

.page-address {
  font-style: normal;
  line-height: 1.6;
  color: #1f2937;
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.faq-item p {
  margin: 0;
  color: #1f2937;
}

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

  .page-surface {
    padding: 1.5rem;
  }
}

.results-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
}

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

.course-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.course-card__image {
  background-size: cover;
  background-position: center;
  height: 160px;
}

.course-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.course-card__location {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.course-card__country {
  background: #ecfeff;
  color: #0e7490;
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.course-card__facts {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.course-card__facts div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.course-card__facts dt {
  color: #64748b;
  font-weight: 500;
}

.course-card__facts dd {
  margin: 0;
  font-weight: 600;
}

.course-card__excerpt {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}

.course-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Course List - Horizontal Row Layout */
.course-list {
  display: grid;
  gap: 1.5rem;
}

.course-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.course-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.course-row__image {
  width: 240px;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.course-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.course-row:hover .course-row__image img {
  transform: scale(1.05);
}

.course-row__content {
  padding: 1.5rem 1.75rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.course-row__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.course-row__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.course-row__title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.course-row__title a:hover {
  color: #0f766e;
  text-decoration: none;
}

.course-row__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.rating-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
}

.rating-count {
  font-size: 0.85rem;
  color: #047857;
  font-weight: 500;
}

.course-row__location {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.course-row__country {
  background: #ecfeff;
  color: #0e7490;
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.course-row__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #475569;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.meta-item strong {
  color: #0f172a;
  font-weight: 700;
}

.course-row__description {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.course-row__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.results-notice {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.muted {
  color: #64748b;
}

.layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Sidebar Header */
.sidebar-header {
  background: linear-gradient(135deg, #0f766e, #10b981);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.25);
}

.sidebar-header__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.sidebar-header__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Sidebar Sections */
.sidebar-section {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sidebar-section:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.sidebar-section--featured {
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.sidebar-section--cta {
  background: linear-gradient(135deg, #f8fafc, #ecfdf5);
  text-align: center;
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.sidebar-section--cta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.sidebar-section--cta p {
  margin: 0 0 1.25rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

.sidebar-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(16, 185, 129, 0.15);
}

.sidebar-section h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.sidebar-link {
  font-size: 0.8rem;
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  text-decoration: none;
}

/* Sidebar List */
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.875rem;
}

.sidebar-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
}

.sidebar-list li:hover {
  background: rgba(16, 185, 129, 0.05);
}

.sidebar-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.sidebar-item__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sidebar-item__link:hover {
  color: #0f766e;
  text-decoration: none;
}

.sidebar-meta {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.rating-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 0.1rem 0.45rem;
  border-radius: 0.35rem;
  font-weight: 700;
  font-size: 0.8rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.empty-state {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(180deg, #0b1120, #111827);
  color: #f8fafc;
  padding: 2.75rem 0;
}

.site-footer__inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #f8fafc;
  margin: 0;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(15, 118, 110, 0.18);
}

.site-footer__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0.25rem 0 0;
  color: rgba(241, 245, 249, 0.78);
  font-size: 0.92rem;
}

.site-footer__links {
  display: inline-flex;
  gap: 1rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(241, 245, 249, 0.85);
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #f8fafc;
  background: rgba(15, 118, 110, 0.28);
  text-decoration: none;
  outline: none;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.78);
}

@media (max-width: 640px) {
  .site-footer__inner {
    justify-items: stretch;
    text-align: left;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

.detail-hero {
  background-size: cover;
  background-position: center;
  min-height: 320px;
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
}

.detail-hero__overlay {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.85));
}

.detail-hero__location {
  margin: 0.5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.detail-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.detail-section {
  background-color: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.5rem;
}

.detail-section h2 {
  margin-top: 0;
}

.detail-gallery {
  padding: 1.75rem;
}

.detail-gallery h2 {
  margin: 0 0 1rem;
}

.gallery-slider {
  position: relative;
  display: grid;
  gap: 1rem;
  --gallery-index: 0;
}

.gallery-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.gallery-slider__track {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.gallery-slider.is-ready .gallery-slider__viewport {
  isolation: isolate;
}

.gallery-slider.is-ready .gallery-slider__track {
  display: flex;
  transform: translateX(calc(var(--gallery-index) * -100%));
  transition: transform 0.4s ease;
}

.gallery-slider__slide {
  min-width: 100%;
  margin: 0;
}

.gallery-slider.is-ready .gallery-slider__slide {
  flex: 0 0 100%;
}

.gallery-slide {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  background-color: #0f172a;
}

.gallery-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.35s ease;
}

.gallery-slider.is-ready .gallery-slide img {
  transform-origin: center;
}

.gallery-slider.is-ready .gallery-slide img:hover {
  transform: scale(1.03);
}

.gallery-slide figcaption {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.9) 100%);
  color: #f8fafc;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
}

.gallery-slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font-size: 1.75rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.2);
}

.gallery-slider.is-ready .gallery-slider__control {
  display: flex;
}

.gallery-slider__control span {
  line-height: 1;
}

.gallery-slider__control:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.gallery-slider__control:focus-visible {
  outline: 2px solid #34d399;
  outline-offset: 3px;
}

.gallery-slider__control:disabled {
  opacity: 0.45;
  cursor: default;
  transform: translateY(-50%);
}

.gallery-slider__control--prev {
  left: 1.25rem;
}

.gallery-slider__control--next {
  right: 1.25rem;
}

.gallery-slider__indicators {
  display: none;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-slider.is-ready .gallery-slider__indicators {
  display: flex;
}

.gallery-slider__indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.gallery-slider__indicator:hover,
.gallery-slider__indicator:focus-visible {
  background: rgba(15, 23, 42, 0.55);
  transform: scale(1.1);
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.8);
}

.gallery-slider__indicator.is-active,
.gallery-slider__indicator[aria-current="true"] {
  background: #0f766e;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .gallery-slider__control {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .gallery-slider__control--prev {
    left: 0.75rem;
  }

  .gallery-slider__control--next {
    right: 0.75rem;
  }
}

@media (max-width: 640px) {
  .gallery-slider {
    gap: 0.75rem;
  }

  .gallery-slide figcaption {
    font-size: 0.85rem;
  }
}

.detail-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(4, 47, 46, 0.9));
  color: #ecfdf5;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.detail-rating__score {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
  font-weight: 700;
  color: #f8fafc;
}

.detail-rating__label {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1rem;
  color: rgba(236, 253, 245, 0.85);
}

.detail-rating__count {
  font-size: 0.85rem;
  color: rgba(236, 253, 245, 0.78);
}

.detail-section p {
  margin-top: 0;
  color: #1f2937;
}

.table-responsive {
  overflow-x: auto;
}

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

.data-table th,
.data-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.data-table thead {
  background-color: #f8fafc;
}

.policy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.policy-card h3 {
  margin-top: 0;
}

.policy-card ul {
  margin: 0;
  padding-left: 1rem;
  color: #334155;
}

.detail-metadata {
  display: grid;
  gap: 0.75rem;
}

.detail-metadata div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.gallery__item {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  display: block;
  height: 120px;
  object-fit: cover;
}

.gallery__item figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #475569;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 240px;
  border-radius: 0.75rem;
}

.directory {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.directory-card {
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.directory-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.directory-card p {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-weight: 600;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #475569;
}

.breadcrumb a {
  color: #0f766e;
  font-weight: 600;
}

.directory-course-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.directory-course {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 70%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.directory-course::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(15, 118, 110, 0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.directory-course__info h3 {
  margin: 0;
  font-size: 1.05rem;
}

.directory-course__info a {
  color: #0f172a;
}

.directory-course__location {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.directory-course__meta {
  display: flex;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: #1f2937;
}

.directory-course__meta dt {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  color: #0f766e;
}

.directory-course__meta dd {
  margin: 0.1rem 0 0;
}

.directory-course .btn {
  white-space: nowrap;
  border-radius: 999px;
}

.directory-course .btn-outline {
  border-color: #0f766e;
  color: #0f766e;
  background-color: rgba(15, 118, 110, 0.08);
}

.directory-course .btn-outline:hover {
  background-color: rgba(15, 118, 110, 0.16);
}


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

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .directory-course {
    grid-template-columns: minmax(0, 1fr);
  }

  .directory-course__meta {
    order: 3;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .directory-course .btn {
    order: 2;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .course-row {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
  }

  .course-row__image {
    width: 140px;
    min-height: 140px;
  }

  .course-row__content {
    padding: 1rem 1rem 1rem 0;
    gap: 0.65rem;
  }

  .course-row__header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .course-row__title {
    font-size: 1.1rem;
  }

  .course-row__rating {
    align-self: flex-start;
    padding: 0.35rem 0.75rem;
  }

  .rating-score {
    font-size: 1.1rem;
  }

  .rating-count {
    font-size: 0.75rem;
  }

  .course-row__location {
    font-size: 0.85rem;
  }

  .course-row__meta {
    gap: 0.85rem;
    font-size: 0.85rem;
  }

  .course-row__description {
    display: none;
  }

  .course-row__actions {
    margin-top: 0;
  }

  .course-list {
    gap: 1.25rem;
  }

  .sidebar-header__title {
    font-size: 1.2rem;
  }

  .sidebar-section {
    padding: 1rem;
  }

  .sidebar-list li {
    padding: 0.5rem;
  }

  .sidebar-rank {
    min-width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }

  .sidebar-item__link {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .course-card__facts {
    flex-wrap: wrap;
  }

  .detail-rating {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem 1rem;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Extra Mobile Optimization for Course List */
  .course-row {
    grid-template-columns: 120px 1fr;
    gap: 0.85rem;
  }

  .course-row__image {
    width: 120px;
    min-height: 120px;
  }

  .course-row__content {
    padding: 0.85rem 0.85rem 0.85rem 0;
    gap: 0.5rem;
  }

  .course-row__title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .course-row__rating {
    padding: 0.3rem 0.65rem;
  }

  .rating-score {
    font-size: 1rem;
  }

  .rating-count {
    font-size: 0.7rem;
  }

  .course-row__location {
    font-size: 0.8rem;
  }

  .course-row__country {
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
  }

  .course-row__meta {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .course-list {
    gap: 1rem;
  }

  .btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
  }

  .results-notice {
    font-size: 0.85rem;
    padding: 0.75rem;
    margin-top: 1.5rem;
  }

  /* Mobile Search Panel Optimization */
  .hero {
    padding: 2rem 0 1.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .hero__eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
  }

  .search-panel {
    padding: 1rem;
    gap: 0.75rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.5rem 0.65rem;
    font-size: 0.95rem;
  }

  .form-row {
    gap: 0.75rem;
  }

  .form-check {
    font-size: 0.85rem;
  }

  .form-actions {
    gap: 0.75rem;
  }

  .btn {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }

  .search-panel .muted {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

/* Homepage Info Sections */
.info-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.info-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  color: #0f172a;
  font-weight: 700;
}

.section-intro {
  margin: 0 0 3rem;
  text-align: center;
  color: #475569;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* How It Works Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #0f766e);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.feature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.feature-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  color: #0f172a;
  font-weight: 600;
}

.feature-card__description {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

/* Why Choose Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.benefit-item__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-item__title::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-item__description {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.use-case-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.use-case-card__title {
  margin: 0;
  font-size: 1.35rem;
  color: #0f172a;
  font-weight: 600;
}

.use-case-card__description {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  flex: 1;
}

.use-case-card .btn {
  align-self: flex-start;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  color: #ffffff;
  padding: 4rem 0;
}

.cta-section .section-title {
  color: #ffffff;
}

.cta-section .section-intro {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-large {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.cta-section .btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.cta-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* How To Use Page */
.page-article {
  background-color: #ffffff;
  margin-bottom: 0;
}

.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.page-header__intro {
  margin: 0 auto;
  max-width: 700px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.page-content {
  max-width: 900px;
  padding: 3rem 1.5rem;
}

.content-section {
  margin-bottom: 3.5rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #0f172a;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #10b981;
}

.content-section h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.3rem;
  color: #0f172a;
  font-weight: 600;
}

.content-section p {
  margin: 0 0 1rem;
  color: #1f2937;
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  margin: 0 0 1.25rem;
  padding-left: 1.75rem;
  color: #1f2937;
}

.content-section li {
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.content-section li strong {
  color: #0f172a;
}

.content-section a {
  color: #0f766e;
  font-weight: 600;
}

.content-section a:hover {
  color: #065f46;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.audience-item {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.audience-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #0f766e;
  font-weight: 700;
}

.audience-item p {
  margin: 0;
  color: #1f2937;
}

/* Step Guide */
.step-guide {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.step-item {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border-left: 4px solid #10b981;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #0f172a;
}

.step-item p {
  margin: 0 0 0.75rem;
}

.step-item ol,
.step-item ul {
  margin-top: 0.75rem;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tip-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tip-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.tip-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #0f766e;
  font-weight: 700;
}

.tip-card p {
  margin: 0;
  color: #1f2937;
  line-height: 1.7;
}

/* Benefits List */
.benefits-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.benefits-list li {
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.8;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.benefits-list li strong {
  color: #0f172a;
  font-weight: 700;
}

/* FAQ Items (How To Use page) */
.content-section .faq-item {
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  margin-bottom: 1.25rem;
}

.content-section .faq-item:last-child {
  margin-bottom: 0;
}

.content-section .faq-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.content-section .faq-item p {
  margin: 0;
  color: #1f2937;
}

/* CTA Section within Content */
.content-section.cta-section h2 {
  color: #ffffff;
  border-bottom: none;
}

.content-section.cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* API Section Styles */
.api-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  border-top: 3px solid #0f766e;
  border-bottom: 3px solid #0f766e;
}

.api-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.api-feature {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.api-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.api-feature__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.api-feature h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.api-feature p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.api-cta {
  background: linear-gradient(135deg, #0f766e, #10b981);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  margin-top: 3rem;
  color: #ffffff;
  text-align: center;
}

.api-cta__content h3 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  color: #ffffff;
}

.api-cta__content p {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.api-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.api-cta__buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.api-cta__buttons .btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

/* API Page Specific Styles */
.page-header--api {
  background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
}

.api-header-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.api-stat {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.api-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.api-stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.data-offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.data-offering {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(16, 185, 129, 0.15);
}

.data-offering h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: #0f766e;
  font-weight: 700;
}

.data-offering ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #1f2937;
}

.data-offering li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.spec-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.9rem;
}

.spec-table thead {
  background: linear-gradient(135deg, #0f766e, #10b981);
  color: #ffffff;
}

.spec-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.spec-table tbody tr:hover {
  background: #f8fafc;
}

.spec-table code {
  background: #ecfdf5;
  color: #065f46;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

.use-cases-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.use-case-item {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  border-left: 4px solid #10b981;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.use-case-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.use-case-item p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.benefits-grid-api {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.benefit-api {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 2px solid rgba(16, 185, 129, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-api:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.benefit-api__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-api h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 700;
}

.benefit-api p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.delivery-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.delivery-method {
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.delivery-method h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: #0f766e;
  font-weight: 700;
}

.delivery-method p {
  margin: 0 0 1.25rem;
  color: #1f2937;
  line-height: 1.7;
}

.delivery-method ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #475569;
}

.delivery-method li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.pricing-factors {
  margin: 2rem 0;
  padding-left: 1.75rem;
  color: #1f2937;
}

.pricing-factors li {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-section-api {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.contact-info,
.contact-form-prompt {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.contact-info h3,
.contact-form-prompt h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.contact-email a {
  color: #0f766e;
  text-decoration: none;
}

.contact-email a:hover {
  color: #065f46;
  text-decoration: underline;
}

.contact-form-prompt ul {
  margin: 1rem 0 0;
  padding-left: 1.5rem;
  color: #475569;
}

.contact-form-prompt li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

.api-cta-final {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .info-section {
    padding: 3rem 0;
  }

  .api-section {
    padding: 2.5rem 0;
  }

  .api-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .api-cta {
    padding: 2rem 1.5rem;
  }

  .api-cta__content h3 {
    font-size: 1.35rem;
  }

  .api-cta__buttons {
    flex-direction: column;
  }

  .api-header-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .data-offerings-grid {
    grid-template-columns: 1fr;
  }

  .delivery-methods {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .api-cta-final {
    flex-direction: column;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  .features-grid,
  .benefits-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-content {
    padding: 2rem 1.5rem;
  }

  .content-section {
    margin-bottom: 2.5rem;
  }

  .audience-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .feature-card,
  .use-case-card,
  .step-item {
    padding: 1.5rem;
  }

  .benefit-item,
  .tip-card {
    padding: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }
}
