/* Page Hero */
.page-hero {
  text-align: center;
  padding: 6.25rem 0;
  background: var(--background-section);
}

.page-hero h1, .pricing-table-section h2 {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  font-weight: var(--font-weight-normal);
}

.page-hero p {
  font-size: var(--font-size-2xl);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
.pricing-table-section {
  padding: 6.25rem 0 ;
  background: var(--accent-color);
  text-align: center;
}

.pricing-table-section h2 {
  margin-bottom: 4rem;
}
.pricing-table-section .track-section {
  margin-bottom: 6.25rem;
  /*  var(--accent-color) */
  background: #fff;  
}
.pricing-table-section .track-section:last-child {
  margin-bottom: 0;
}
.track-title-bg { 
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.track-title-bg span {
  font-size: 2rem;
  line-height: 1.25;
  /* var(--accent-color) */
  color: #fff;
  background-color: #222222;
  border-radius: 1.5rem 0 1.5rem 0;
  padding: 0.125rem 1rem;
}

.page-offering .track-title {
  font-family: "Archivo";
  text-align: center;
  color: var(--secondary-color);
  font-size: 3.5rem;
  display: inline-block;
  margin-bottom:0;
}
.offering-track-subtitle{
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--font-size-2xl); 
  color: var(--text-secondary);
}

.track-content-bg {
  position: relative;
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
.track-content-image {
  align-items: center;
  display: flex;
  padding: 1.5rem;
  border-radius: var(--border-radius-xxl);
  background-color: var(--background-section);
}
.track-content-image img {
  width: 164px;
}
.offering-track-content {text-align: left; }
.offering-track-content p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative; }

.offering-track-content p:last-child {
  margin-bottom: 0;
}

.offering-track-content p::before { 
    content: '•';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #222222;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}
.offering-track-button { 
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--secondary-color);
}

.offering-track-button .btn { 
    padding: 16px 32px;
    align-items: center;
    gap: 4px;
    border-radius: 1000px;
    background: var(--secondary-color);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    border: none;
    font-family: 'Archivo SemiExpanded';
    color: #fff;  
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
  .page-hero h1
  , .pricing-table-section h2 {
    font-size: 3.5rem;
  }

  .page-offering .track-title {
    font-size: 2rem;
  }
  .track-title-bg span { font-size: 1.5rem;}
  .track-content-bg { 
    flex-direction: column;
    align-items: center; 
  }
  .track-content-image { 
    display: flex;
    width: 232px;
    height: 232px;
    padding: 24px;
    justify-content: center;
   }
   .offering-track-content { margin: 0 1rem; }
}

/* Mobile optimizations */
@media screen and (max-width: 481px) {
  .page-hero h1, .pricing-table-section h2 {
    font-size: 2rem;
  }

  .page-offering .track-title {
    font-size: 1.5rem;
  }
  .track-title-bg { flex-direction: column; }

  .track-title-bg span { font-size: 1.25rem;}
}
