:root {
  --tpz-bg: #ffffff;
  --tpz-surface: #f8fafc;
  --tpz-surface-2: #eef2f7;
  --tpz-text: #0f172a;
  --tpz-muted: #5b667a;
  --tpz-border: #e2e8f0;
  --tpz-primary: var(--primary-color);
  --tpz-primary-600: #0ea5a7;
  --tpz-primary-700: #0c8e90;
  --tpz-accent: #1d4ed8;
  --tpz-success: #16a34a;
  --tpz-warning: #f59e0b;
  --tpz-danger: #dc2626;
  --tpz-radius-sm: 8px;
  --tpz-radius-md: 12px;
  --tpz-radius-lg: 16px;
  --tpz-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --tpz-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --tpz-shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
  --tpz-ring: 0 0 0 3px rgba(14, 165, 167, 0.25);
  --tpz-font-sans: 'Plus Jakarta Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tpz-font-size: 16px;
  --tpz-line-height: 1.6;
  --tpz-container: 1200px;
  --tpz-gap: 24px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: var(--tpz-font-size);
}

body {
  font-family: var(--tpz-font-sans);
  line-height: var(--tpz-line-height);
  color: var(--tpz-text);
  background: var(--tpz-bg);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--tpz-primary);
}

.container {
  max-width: var(--tpz-container);
}

.section-gap {
  padding: 72px 0;
}

@media (max-width: 991.98px) {
  .section-gap {
    padding: 56px 0;
  }
}

@media (max-width: 575.98px) {
  .section-gap {
    padding: 40px 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tpz-font-sans);
  color: var(--tpz-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

h1 { font-size: clamp(2.1rem, 3vw, 2.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 2.2vw, 2.2rem); line-height: 1.2; }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.7rem); line-height: 1.25; }

p {
  color: var(--tpz-muted);
}

.main-header {
  background: var(--tpz-bg);
  border-bottom: 1px solid var(--tpz-border);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-header .header-upper {
  padding: 14px 0;
}

.main-header .header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-header .nav-outer {
  flex: 1;
}

.main-header .logo img,
.main-header .logo-mobile img {
  max-height: 44px;
  width: auto;
}

@media (max-width: 575.98px) {
  .main-header .logo img,
  .main-header .logo-mobile img {
    max-height: 36px;
  }
}

.main-header .navigation > li {
  margin: 0 10px;
}

.main-header .navigation > li > a {
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 0;
  color: var(--tpz-text);
  transition: color 0.2s ease;
}

.main-header .navigation > li > a:hover,
.main-header .navigation > li.active > a {
  color: var(--tpz-primary);
}

.main-header .navigation .dropdown > a i {
  margin-left: 6px;
  font-size: 0.85em;
}

.main-header .navigation > li > ul {
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
  box-shadow: var(--tpz-shadow-md);
  padding: 8px 0;
}

.main-header .navigation > li > ul > li > a {
  padding: 10px 16px;
  color: var(--tpz-text);
}

.main-header .menu-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
}

.main-header .navbar-collapse {
  display: flex;
  align-items: center;
}

.main-header .navigation {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.main-header .menu-right {
  margin-left: auto;
}

.main-header .menu-right .form-control {
  min-width: 140px;
}

.navbar-toggle {
  border: 1px solid var(--tpz-border);
  border-radius: var(--tpz-radius-sm);
  padding: 8px 10px;
  background: #fff;
}

.navbar-toggle .icon-bar {
  background: var(--tpz-text);
}

@media (max-width: 1199.98px) {
  .main-header .navbar-collapse {
    background: var(--tpz-bg);
    border: 1px solid var(--tpz-border);
    border-radius: var(--tpz-radius-md);
    padding: 12px 16px;
    margin-top: 12px;
    box-shadow: var(--tpz-shadow-sm);
    display: block;
  }

  .main-header .navigation > li {
    margin: 0;
  }

  .main-header .navigation > li > a {
    padding: 10px 0;
    display: block;
  }

  .main-header .menu-right {
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 10px;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .main-header {
    position: static;
  }

  .main-header .header-inner {
    flex-wrap: wrap;
  }

  .main-header .navbar-collapse {
    width: 100%;
  }

  .main-header .navigation {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .main-header .navigation > li {
    width: 100%;
  }

  .main-header .navigation > li > a {
    padding: 8px 0;
  }

  .main-header .menu-right {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

.btn,
.menu-btn,
button.btn,
input[type='submit'],
input[type='button'] {
  font-family: var(--tpz-font-sans);
  font-weight: 600;
  border-radius: var(--tpz-radius-sm);
  padding: 10px 18px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary,
.menu-btn {
  background: var(--tpz-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 16px rgba(14, 165, 167, 0.18);
}

.btn-primary:hover,
.menu-btn:hover {
  background: var(--tpz-primary-600);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: var(--tpz-primary);
  color: var(--tpz-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: rgba(14, 165, 167, 0.1);
  color: var(--tpz-primary-700);
}

.btn-secondary {
  background: var(--tpz-surface-2);
  color: var(--tpz-text);
  border-color: transparent;
}

.btn:disabled,
button:disabled,
.menu-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.form-control,
select,
textarea,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='number'] {
  min-height: 44px;
  border-radius: var(--tpz-radius-sm);
  border: 1px solid var(--tpz-border);
  padding: 10px 14px;
  color: var(--tpz-text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
select:focus,
textarea:focus,
input:focus {
  border-color: var(--tpz-primary);
  box-shadow: var(--tpz-ring);
  outline: none;
}

label {
  font-weight: 600;
  color: var(--tpz-text);
}

.card,
.event-item,
.single-event-item,
.ticket-item {
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #fff;
  box-shadow: var(--tpz-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.event-item:hover,
.single-event-item:hover,
.ticket-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--tpz-shadow-md);
}

.table,
.table-bordered {
  border-color: var(--tpz-border);
}

.table th,
.table td {
  padding: 14px 16px;
  border-color: var(--tpz-border);
}

.table thead th {
  background: var(--tpz-surface);
  color: var(--tpz-text);
  font-weight: 700;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(15, 23, 42, 0.02);
}

.alert {
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
  background: var(--tpz-surface);
  color: var(--tpz-text);
}

.alert-success { border-color: rgba(22, 163, 74, 0.35); background: rgba(22, 163, 74, 0.08); }
.alert-warning { border-color: rgba(245, 158, 11, 0.35); background: rgba(245, 158, 11, 0.1); }
.alert-danger { border-color: rgba(220, 38, 38, 0.35); background: rgba(220, 38, 38, 0.08); }

.badge,
.badge-primary {
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
}

.badge-primary {
  background: rgba(14, 165, 167, 0.15);
  color: var(--tpz-primary-700);
}

.pagination .page-link {
  border-radius: var(--tpz-radius-sm);
  border-color: var(--tpz-border);
  color: var(--tpz-text);
}

.pagination .page-item.active .page-link {
  background: var(--tpz-primary);
  border-color: var(--tpz-primary);
}

:focus-visible {
  outline: none;
  box-shadow: var(--tpz-ring);
}

.hero, .banner, .breadcrumb-area {
  border-bottom: 1px solid var(--tpz-border);
}

.event-grid, .events-grid {
  display: grid;
  gap: var(--tpz-gap);
}

@media (min-width: 992px) {
  .event-grid, .events-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .event-grid, .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .event-grid, .events-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero + search */
.hero-section {
  position: relative;
  color: #ffffff;
}

.hero-section .hero-content {
  max-width: 720px;
}

.hero-section .hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 14px;
  color: #ffffff;
}

.hero-section .hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.event-search {
  background: #ffffff;
  border-radius: var(--tpz-radius-lg);
  padding: 10px;
  box-shadow: var(--tpz-shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 8px;
  align-items: center;
}

.event-search .search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--tpz-border);
  border-radius: var(--tpz-radius-md);
  padding: 10px 12px;
}

.event-search .search-item label {
  margin: 0;
  color: var(--tpz-muted);
}

.event-search .search-item select,
.event-search .search-item input {
  border: none;
  padding: 0;
  min-height: auto;
  width: 100%;
  background: transparent;
}

.event-search .search-item select:focus,
.event-search .search-item input:focus {
  box-shadow: none;
}

.theme-btn {
  background: var(--tpz-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--tpz-radius-md);
  padding: 12px 22px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(14, 165, 167, 0.18);
}

.theme-btn:hover {
  background: var(--tpz-primary-600);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .event-search {
    grid-template-columns: 1fr;
  }
}

/* Section titles */
.section-title h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
}

.section-title p {
  max-width: 680px;
  margin: 0 auto;
}

/* Event cards */
.event-item {
  overflow: hidden;
}

.event-item .event-image {
  overflow: hidden;
}

.event-item .event-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.event-item:hover .event-image img {
  transform: scale(1.03);
}

.event-item .event-content {
  padding: 18px 18px 20px;
}

.event-item .time-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.88rem;
  color: var(--tpz-muted);
  margin-bottom: 8px;
}

.event-item .organizer {
  font-size: 0.9rem;
  color: var(--tpz-muted);
  display: inline-block;
  margin-bottom: 6px;
}

.event-item h5 a {
  color: var(--tpz-text);
  font-weight: 700;
}

.event-item .event-description {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.event-item .price-remain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--tpz-border);
  padding-top: 12px;
}

.event-item .price {
  font-weight: 700;
  color: var(--tpz-text);
}

.wishlist-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
}

/* Feature + category cards */
.feature-item,
.work-process-item,
.testimonial-item,
.shop-item,
.category-item {
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
}

.feature-item {
  padding: 26px 24px;
  height: 100%;
}

.feature-item i {
  color: var(--tpz-primary);
  font-size: 2rem;
}

.category-wrap {
  display: grid !important;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0;
}

.category-item {
  overflow: hidden;
  position: relative;
  width: auto !important;
  margin: 0 !important;
}

.category-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-item .category-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0));
}

.category-item .category-content h5 {
  color: #ffffff;
  margin: 0;
}

/* Tabs */
.events-tabs .nav-link {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  color: var(--tpz-muted);
  border: 1px solid transparent;
}

.events-tabs .nav-link.active {
  background: rgba(14, 165, 167, 0.12);
  color: var(--tpz-primary-700);
  border-color: rgba(14, 165, 167, 0.3);
}

/* Work process cards */
.work-process {
  margin-top: 0;
  transform: none;
  padding: 20px 0 10px;
}

.work-process-inner {
  background: transparent;
  padding: 0 !important;
  box-shadow: none;
}

.work-process-item {
  padding: 24px;
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
  text-align: left;
  height: 100%;
}

.work-process .row {
  margin-bottom: 0;
}

.work-process .section-title {
  margin-bottom: 32px;
}

.feature-section {
  padding-bottom: 20px;
}

.work-process .container {
  padding-bottom: 0 !important;
}

.work-process-item:before,
.work-process-item:after {
  display: none !important;
}

.work-process-item .icon {
  width: 96px;
  height: 96px;
  background: rgba(14, 165, 167, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 999px;
}

.work-process-item .icon i:before {
  font-size: 38px;
}

.work-process-item .icon .number {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  top: -10px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.work-process-inner.pt-110,
.work-process-inner.rpt-90,
.work-process-inner.pb-80,
.work-process-inner.rpb-60 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Sidebar widgets */
.sidebar .widget {
  padding: 18px;
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
  margin-bottom: 24px;
}

.widget .widget-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.widget-search input {
  width: 100%;
  border-radius: var(--tpz-radius-md);
}

/* Breadcrumb / banner */
.page-banner .page-title {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex;
  gap: 6px;
}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer */
.footer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo img {
  max-height: 48px;
  width: auto;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-section .social-style-one a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.copyright-area {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Event details */
.event-details-section .event-details-content {
  background: #ffffff;
}

.event-top {
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.event-top-date {
  min-width: 90px;
  text-align: center;
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
  background: var(--tpz-surface);
  padding: 12px 10px;
  box-shadow: var(--tpz-shadow-sm);
}

.event-top-date .event-month {
  font-weight: 700;
  color: var(--tpz-muted);
}

.event-top-date .event-date {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tpz-text);
}

.event-details-top .title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.event-details-header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--tpz-muted);
}

.event-details-image {
  border-radius: var(--tpz-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tpz-border);
  box-shadow: var(--tpz-shadow-sm);
}

.event-details-image img {
  width: 100%;
  height: auto;
}

.event-details-image .buttons {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 18px;
  top: 18px;
}

.event-details-image .buttons a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--tpz-border);
  box-shadow: var(--tpz-shadow-sm);
}

.event-details-content-inner .inner-title {
  font-size: 1.3rem;
  margin-top: 12px;
}

.event-details-information {
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
  padding: 20px;
  position: sticky;
  top: 90px;
}

.event-details-information .author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.event-details-information .author img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
}

.event-details-information .dropdown-toggle {
  font-weight: 600;
}

.event-details-information .quantity-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tpz-border);
  border-radius: var(--tpz-radius-md);
  overflow: hidden;
  background: #ffffff;
}

.event-details-information .quantity-input button {
  border: none;
  background: var(--tpz-surface-2);
  padding: 8px 12px;
  font-weight: 700;
}

.event-details-information .quantity-input input {
  width: 54px;
  text-align: center;
  border: none;
}

.event-details-information .price-count {
  border-bottom: 1px solid var(--tpz-border);
  padding-bottom: 12px;
}

.event-details-information .price-count h6 {
  font-size: 1.05rem;
  font-weight: 700;
}

.event-details-information .dropdown-menu {
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
  box-shadow: var(--tpz-shadow-md);
}

/* Checkout tickets + inputs */
.form_control {
  width: 100%;
  min-height: 120px;
  border-radius: var(--tpz-radius-sm);
  border: 1px solid var(--tpz-border);
  padding: 10px 14px;
  color: var(--tpz-text);
  background: #fff;
}

.form_control:focus {
  border-color: var(--tpz-primary);
  box-shadow: var(--tpz-ring);
  outline: none;
}

.quantity-input {
  border: 1px solid var(--tpz-border);
  border-radius: var(--tpz-radius-md);
  overflow: hidden;
  background: #ffffff;
}

.quantity-input button {
  background: var(--tpz-surface-2);
  border-color: transparent;
  font-size: 18px;
}

.quantity-input input {
  border: none;
  height: 40px;
}

.checkout-area .slot-box-wrap > div,
.event-details-information .slot-box-wrap > div {
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
  padding: 10px 12px;
  background: var(--tpz-surface);
}

/* Checkout funnel */
.checkout-area .billing_details_area,
.checkout-area .sidebar,
.cart-total-product {
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
  padding: 20px;
}

.checkout-area .from-title,
.cart-title h6 {
  font-weight: 700;
}

.checkout-product {
  display: flex;
  gap: 14px;
  align-items: center;
}

.checkout-product-img img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
}

.package-summary,
.slot-box-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.slot-box-wrap {
  display: grid;
  gap: 10px;
}

.cart-item-wrap .cart-single-item,
.cart-item-wrap .alert {
  border-radius: var(--tpz-radius-md);
  border: 1px solid var(--tpz-border);
  background: var(--tpz-surface);
}

.cart-total-price {
  border-top: 1px solid var(--tpz-border);
  padding-top: 16px;
}

/* Dashboard/account */
.user-dashbord .user-sidebar,
.user-dashbord .account-info,
.user-dashbord .user-profile-details {
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  background: #ffffff;
  box-shadow: var(--tpz-shadow-sm);
}

.user-sidebar {
  padding: 16px;
}

.user-sidebar .links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.user-sidebar .links a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--tpz-radius-md);
  color: var(--tpz-text);
  font-weight: 600;
}

.user-sidebar .links a.active,
.user-sidebar .links a:hover {
  background: rgba(14, 165, 167, 0.12);
  color: var(--tpz-primary-700);
}

.account-info {
  padding: 18px;
}

.account-info .title h4 {
  margin-bottom: 12px;
}

.account-info .main-info {
  border-top: 1px solid var(--tpz-border);
  padding-top: 12px;
}

.account-info .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.main-table {
  border-radius: var(--tpz-radius-md);
  overflow: hidden;
  border: 1px solid var(--tpz-border);
}

.table-responsiv {
  width: 100%;
  overflow-x: auto;
}

.table-responsiv table {
  margin-bottom: 0;
}

/* About page */
.about-section .about-image-part img {
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  box-shadow: var(--tpz-shadow-sm);
}

.about-section .about-content {
  background: #ffffff;
  border-radius: var(--tpz-radius-lg);
  border: 1px solid var(--tpz-border);
  padding: 24px;
  box-shadow: var(--tpz-shadow-sm);
}
