*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    box-sizing: border-box;
    font-size: 1.6rem;
    background-color: #58b7b4;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;

}

h1 {
    color: #ffeb3b;
    text-align: center;
    font-size: 3rem;
    padding: 2rem 0 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 800px;
}

p {
    max-width: 800px;
    line-height: 1.6;
    margin: 1rem 0;
    color: #f8f8f8;
    font-size: 1.6rem;
    text-align: justify;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
  }

  li {
    max-width: 800px;
    margin-left: 0;
    padding-left: 0.5rem;
    line-height: 1.6;
    color: #e9e9e9;
    font-size: 1.6rem;
    list-style-type: disc;
    list-style-position: inside;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .image-carousel::-webkit-scrollbar {
    height: 8px;
  }
  .image-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }
  .image-carousel::-webkit-scrollbar-thumb {
    background-color: #ffeb3b;
    border-radius: 10px;
  }
  
  .carousel-track {
    display: flex;
    gap: 1rem; 
    align-items: center;
  }
  
  .carousel-track img {
    flex: 0 0 auto; 
    width: 65%; 
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .image-carousel {
    width: 90%;
    max-width: 800px;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin: 2rem auto;
    border-radius: 1rem;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
    scrollbar-color: #ffeb3b rgba(255, 255, 255, 0.2);
  }