:root {
  --proseathub-primary: #e63946;
  --proseathub-primary-dark: #c32f3c;
  --proseathub-secondary: #457b9d;
  --proseathub-accent: #f1faee;
  --proseathub-dark: #1d3557;
  --proseathub-darker: #14213d;
  --proseathub-light: #f8f9fa;
  --proseathub-gray: #6c757d;
  --proseathub-border: #dee2e6;
  --proseathub-text: #212529;
  --proseathub-text-muted: #6c757d;
  --proseathub-shadow: 0 2px 8px rgba(0,0,0,0.1);
  --proseathub-shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--proseathub-text);
  background: var(--proseathub-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--proseathub-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--proseathub-text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--proseathub-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.proseathub-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--proseathub-border);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: var(--proseathub-shadow);
}

.proseathub-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proseathub-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.proseathub-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.proseathub-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--proseathub-dark);
  letter-spacing: -0.5px;
}

.proseathub-brand-text span {
  color: var(--proseathub-primary);
}

.proseathub-nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.proseathub-nav-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--proseathub-text);
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-nav-item:hover,
.proseathub-nav-item.proseathub-active {
  color: var(--proseathub-primary);
}

.proseathub-cta-button {
  background: var(--proseathub-primary);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.proseathub-cta-button:hover {
  background: var(--proseathub-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
  color: #fff;
}

.proseathub-hamburger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.proseathub-hamburger span {
  width: 28px;
  height: 3px;
  background: var(--proseathub-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.proseathub-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.proseathub-mobile-menu.proseathub-open {
  display: block;
}

.proseathub-mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.proseathub-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.proseathub-mobile-menu.proseathub-open .proseathub-mobile-panel {
  transform: translateX(0);
}

.proseathub-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--proseathub-dark);
  cursor: pointer;
  padding: 0.5rem;
}

.proseathub-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.proseathub-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--proseathub-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--proseathub-border);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-mobile-link:hover,
.proseathub-mobile-link.proseathub-active {
  color: var(--proseathub-primary);
}

.proseathub-mobile-cta {
  background: var(--proseathub-primary);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.proseathub-main {
  min-height: 100vh;
}

.proseathub-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.proseathub-hero {
  position: relative;
  min-height: 550px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
  color: #fff;
  overflow: hidden;
}

.proseathub-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.proseathub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.proseathub-hero-badge {
  display: inline-block;
  background: var(--proseathub-primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.proseathub-hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.proseathub-hero-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.proseathub-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.proseathub-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--proseathub-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}

.proseathub-btn-primary:hover {
  background: var(--proseathub-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
  color: #fff;
}

.proseathub-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.proseathub-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.proseathub-hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  background: radial-gradient(circle, rgba(241,250,238,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.proseathub-features {
  padding: 5rem 0;
  background: #fff;
}

.proseathub-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.proseathub-label {
  display: inline-block;
  background: var(--proseathub-accent);
  color: var(--proseathub-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid var(--proseathub-border);
}

.proseathub-features-subtitle {
  font-size: 1.0625rem;
  color: var(--proseathub-text-muted);
  max-width: 750px;
  margin: 0 auto;
}

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

.proseathub-feature-item {
  background: var(--proseathub-light);
  border: 1px solid var(--proseathub-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.proseathub-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--proseathub-shadow-lg);
}

.proseathub-feature-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(230,57,70,0.05) 0%, rgba(69,123,157,0.05) 100%);
  border: 2px solid var(--proseathub-secondary);
}

.proseathub-feature-item h3 {
  color: var(--proseathub-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.proseathub-feature-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.proseathub-sports {
  padding: 5rem 0;
  background: var(--proseathub-light);
}

.proseathub-sports-header {
  text-align: center;
  margin-bottom: 4rem;
}

.proseathub-sports-subtitle {
  font-size: 1.0625rem;
  color: var(--proseathub-text-muted);
  max-width: 750px;
  margin: 0 auto;
}

.proseathub-sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.proseathub-sport-box {
  background: #fff;
  border: 1px solid var(--proseathub-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--proseathub-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.proseathub-sport-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--proseathub-shadow-lg);
}

.proseathub-sport-featured {
  grid-column: span 1;
  border: 2px solid var(--proseathub-primary);
}

.proseathub-sport-wide {
  grid-column: 1 / -1;
}

.proseathub-sport-header h3 {
  color: var(--proseathub-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--proseathub-primary);
}

.proseathub-sport-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.proseathub-sport-content li {
  padding: 0.5rem 0;
  color: var(--proseathub-text-muted);
  font-size: 0.9375rem;
}

.proseathub-sport-content li::before {
  content: '• ';
  color: var(--proseathub-secondary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.proseathub-vendor-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.proseathub-vendor-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--proseathub-secondary) 0%, var(--proseathub-primary) 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(69,123,157,0.25);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-vendor-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 18px rgba(69,123,157,0.35);
  color: #fff;
}

.proseathub-footer {
  background: var(--proseathub-darker);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
}

.proseathub-footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.proseathub-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.proseathub-footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.proseathub-footer-logo-img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
}

.proseathub-footer-brand h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.proseathub-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.proseathub-contact-details {
  margin-top: 1.5rem;
}

.proseathub-contact-details p {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.proseathub-contact-details a {
  color: rgba(255,255,255,0.85);
}

.proseathub-contact-details a:hover {
  color: #fff;
}

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

.proseathub-footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.proseathub-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proseathub-footer-col li {
  margin-bottom: 0.625rem;
}

.proseathub-footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-footer-col a:hover {
  color: #fff;
}

.proseathub-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 2rem 0;
}

.proseathub-footer-bottom {
  text-align: center;
}

.proseathub-disclaimer-box {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.proseathub-disclaimer-box p {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

.proseathub-disclaimer-box a {
  color: var(--proseathub-primary);
}

.proseathub-copyright-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.proseathub-copyright-text a {
  color: rgba(255,255,255,0.75);
  margin: 0 0.5rem;
}

.proseathub-copyright-text a:hover {
  color: #fff;
}

.proseathub-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--proseathub-dark);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-cookie-notice.proseathub-hidden {
  display: none;
}

.proseathub-cookie-message {
  flex: 1;
}

.proseathub-cookie-message h5 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.proseathub-cookie-message p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.proseathub-cookie-message a {
  color: var(--proseathub-primary);
}

.proseathub-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.proseathub-page-header {
  background: linear-gradient(135deg, var(--proseathub-dark) 0%, var(--proseathub-secondary) 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.proseathub-page-title {
  color: #fff;
  font-size: 2.5rem;
  margin: 0;
}

.proseathub-content-section {
  background: #fff;
  padding: 3rem 0;
}

.proseathub-content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.proseathub-content-block h2 {
  color: var(--proseathub-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.proseathub-content-block h3 {
  color: var(--proseathub-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.proseathub-content-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-content-block ul li {
  margin-bottom: 0.5rem;
  color: var(--proseathub-text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.proseathub-content-block p,
.proseathub-content-block h2,
.proseathub-content-block h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.proseathub-contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.proseathub-contact-info-box h2 {
  color: var(--proseathub-dark);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.proseathub-contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
}

.proseathub-contact-info-list li {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.proseathub-contact-info-list strong {
  color: var(--proseathub-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proseathub-contact-info-list a {
  color: var(--proseathub-secondary);
}

.proseathub-form-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--proseathub-shadow-lg);
  border: 1px solid var(--proseathub-border);
}

.proseathub-form-box h2 {
  color: var(--proseathub-dark);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.proseathub-form-field {
  margin-bottom: 1.5rem;
}

.proseathub-form-field label {
  display: block;
  font-weight: 600;
  color: var(--proseathub-text);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.proseathub-form-input {
  width: 100%;
  max-width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--proseathub-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.proseathub-form-input:focus {
  outline: none;
  border-color: var(--proseathub-secondary);
  box-shadow: 0 0 0 3px rgba(69,123,157,0.1);
}

textarea.proseathub-form-input {
  resize: vertical;
  min-height: 150px;
}

.proseathub-submit-text.proseathub-hidden {
  display: none;
}

.proseathub-submit-loading {
  display: none;
}

.proseathub-submit-loading.proseathub-visible {
  display: inline-flex;
}

.proseathub-faq-section {
  margin-top: 4rem;
}

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

.proseathub-faq-box {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: var(--proseathub-shadow);
  border: 1px solid var(--proseathub-border);
}

.proseathub-faq-box h4 {
  color: var(--proseathub-dark);
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.proseathub-faq-box p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.proseathub-hidden {
  display: none;
}

.proseathub-visible {
  display: block;
}

@media (max-width: 1024px) {
  .proseathub-nav-desktop {
    display: none;
  }

  .proseathub-hamburger {
    display: flex;
  }

  .proseathub-hero {
    grid-template-columns: 1fr;
    min-height: 450px;
    padding: 4rem 2rem;
  }

  .proseathub-hero-visual {
    display: none;
  }

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

  .proseathub-feature-highlight {
    grid-column: span 1;
  }

  .proseathub-sports-grid {
    grid-template-columns: 1fr;
  }

  .proseathub-sport-featured,
  .proseathub-sport-wide {
    grid-column: span 1;
  }

  .proseathub-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .proseathub-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .proseathub-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .proseathub-cookie-notice {
    flex-direction: column;
    gap: 1rem;
  }

  .proseathub-cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .proseathub-cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .proseathub-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .proseathub-header-container {
    padding: 0 1rem;
  }

  .proseathub-hero {
    padding: 3.5rem 1rem;
  }

  .proseathub-hero-description {
    font-size: 1rem;
  }

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

  .proseathub-btn-primary,
  .proseathub-btn-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .proseathub-features,
  .proseathub-sports {
    padding: 3rem 0;
  }

  .proseathub-form-box {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .proseathub-content-block {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .proseathub-footer-columns {
    grid-template-columns: 1fr;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .row [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.875rem;
  }

  table thead,
  table tbody,
  table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  table th,
  table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .proseathub-container {
    padding: 0 0.875rem;
  }

  .proseathub-page-title {
    font-size: 1.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 0.5rem;
  }

  .proseathub-label {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .proseathub-hero {
    padding: 3rem 0.875rem;
  }

  .proseathub-content-block {
    padding: 0 0.875rem;
  }

  .proseathub-form-box {
    padding: 1.25rem;
  }

  .proseathub-vendor-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .proseathub-disclaimer-box {
    padding: 1.25rem;
    font-size: 0.8125rem;
  }

  .proseathub-cookie-notice {
    padding: 1.25rem;
  }

  .proseathub-cookie-message h5 {
    font-size: 1rem;
  }

  .proseathub-cookie-message p {
    font-size: 0.875rem;
  }
}
