  /* Basic Reset */
  .size-chart {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Hero Section for Size Chart Page */
  .size-chart .size-chart-hero {
    height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
              url('/Images/General/size-chart-hero.webp') no-repeat center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
  }

  .size-chart .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay */
    z-index: 1;
  }

  .size-chart .size-chart-hero h1 {
    font-size: 3.8em;
    font-weight: bold;
    color: rgb(255, 192, 0);
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .size-chart .size-chart-hero p {
    font-size: 1.4em;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    position: relative;
      color: rgb(255, 255, 255);
    text-shadow: 1px 1px 3px rgb(173, 152, 14);
  }

  /* Size Chart Content Styles */
  .size-chart .size-chart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
  }

  .size-chart .size-chart-container h2 {
    color: rgb(0, 0, 0);
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
  }

  /* Button Styling */
  .size-chart .size-chart-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2em;
    background-color: rgb(255, 192, 0);
    color: black;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
    border: none;
  }

  .size-chart .size-chart-button:hover {
    background-color: rgba(255, 192, 0, 0.8);
  }

  /* Collapsible Button */
  .collapsible {
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 12px 20px;
    font-size: 1.2em;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin-bottom: 15px;
  }

  .collapsible:hover {
    background-color: rgb(255, 192, 0);
  }

  /* Collapsible Content */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-left: 5px solid rgb(255, 192, 0);
  }

  /* Table Styles */
  .size-chart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }

  .size-chart-table th,
  .size-chart-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    font-size: 1em;
  }

  .size-chart-table th {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 192, 0);
    font-weight: bold;
  }

  .size-chart-table tr:nth-child(even) {
    background-color: #f4f4f4;
  }

  .size-chart-table tr:nth-child(odd) {
    background-color: #fff;
  }

  .size-chart-table td {
    color: #333;
  }

  /* Hover effect for table rows */
  .size-chart-table tr:hover {
    background-color: #f1f1f1;
  }

  /* Additional Styling */
  .size-chart-container {
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  /* For Better Responsiveness */
  @media (max-width: 768px) {
    .size-chart .size-chart-hero h1 {
      font-size: 2.8em;
    }

    .size-chart .size-chart-hero p {
      font-size: 1.2em;
    }

    .size-chart-container {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .size-chart .size-chart-hero h1 {
      font-size: 2.2em;
    }

    .size-chart .size-chart-hero p {
      font-size: 1em;
    }

    .collapsible {
      font-size: 1em;
    }

    .size-chart-button {
      font-size: 1em;
      padding: 10px 20px;
    }
  }


  