html, body {
    height: 100%;
    margin: 0;
  }

  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--body-color);
  }

  .hours-section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hours-content {
    background: var(--container-color);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .hours-content p {
    font-size: var(--normal-font-size);
    color: var(--first-color);
    margin: 1rem 0 .5rem;
  }

  .hours-time {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: 1.5rem;
  }

  .section-title {
    color: var(--first-color-alt);
    margin-bottom: 2rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: var(--normal-font-size);
    color: var(--first-color);
    margin-top: 0.5rem;
  }
