p, h1, h2, h3, h4, h5, h6,
ul, ol, dl, blockquote, pre, figure {
  margin: 0; 
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

.main-title {
  font-size: clamp(3.5rem, 7vw, 3.5rem);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.4rem;
  line-height: 0.65;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--secondary-text-color);
  letter-spacing: -0.02em;
}
.page-heading-discription {
    max-width: 900px;
    margin: 0 auto; 
    font-size: 20px;
    font-style:italic;
    text-align: center;
    font-weight: 400;
    line-height: 32px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    
}

/* Banner-Nav-icon */
.header-icon-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0;
}

.header-icon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;  
  color: inherit;         
}

.header-icon-item:hover {
  color: #5265f6;           
}
.header-icon-item .icon {
  height: 24px;
  width: auto;
  display: block;
}

.header-icon-item span {
    font-size: 19px;
    font-weight: 500;
    line-height: 28.8px;
}


/* --- Info Bar Text --- */
.info-bar__text {
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.info-bar__title--light {
  color: var(--secondary-text-color);
  margin-right: 0.4rem;
  white-space: nowrap;
}

.info-bar__title--bold {
  color: var(--text-color);
  white-space: nowrap;
}

/* --- Accordion Text --- */
.accordion-content__title {
  font-size: 2.125rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.accordion-content__text {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--secondary-text-color);
  margin-right: 0px;
  letter-spacing: -0.03em;
}

.text-feature__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2;
}

.text-feature__text {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--secondary-text-color);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
}

/* --- Responsive Styles --- */


@media (max-width: 820px) {
  .page-heading-discription {
    padding-left: 25px;
    padding-right: 25px;
  }
  .info-bar__text {
   flex-direction: column;
   align-items: flex-start;
   line-height: 1.2;
  }
  .accordion-content__title {
    padding-right: 2rem;
  }
}

@media (max-width: 480px) {

  .page-heading-discription {
    text-align: left;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-icon-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-left: 16px;
    
  }
  .header-icon-item span {
    font-size: 18px;
  }
  .header-icon-item .icon {
    width: 24px;
    flex-shrink: 0; /* Prevents the icon from shrinking */
  }
  .hero-title {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0rem;
  }
  .hero-subtitle {
    font-size: 52px;
    line-height: 1.2;
  }

  .info-bar {
    border-bottom: 1px solid hsl(210, 20%, 90%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    
  }
  
  .info-bar__text {
    font-size: 2.5rem;
    align-items: flex-start; /* Corrected: Aligns items to the left */
    flex-direction: column;
    line-height: 1.1;
  }
  
  /* Allows text to wrap on small screens */
  .info-bar__title--light,
  .info-bar__title--bold {
    white-space: normal;
  }
  .accordion-content__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .accordion-content__text {
    font-size: 22px;
    
    
  }
  .text-feature__title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
  }
  .text-feature__text {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-top: 10px;
    
  }
}