body {
    font-family: 'Poppins', sans-serif;
    color: #171717;
    margin: 0;
    padding: 0;
  }

  p{
    margin: 0;
  }

  .notif {
    text-align: center;
    color: #fff;
    background-color: #171717;
    padding: 12px 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    min-height: calc(100vh - 175px);
  }
  
  header {
    text-align: center;
    margin-bottom: 64px;
  }
  
  .hero-text {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin: 0 auto;
  }

  h1{
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
  }
  
  .secondary-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
  }
  
  .secondary-section div {
    max-width: 800px; 
    margin: 0 auto;
  }
  
  .secondary-section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
  
  footer {
    text-align: center;
    color: #fff;
    background-color: #171717;
    padding: 20px 0;
  }

  @media (max-width: 1024px) {
    h1 {
      font-size: 24px;
      line-height: 32px;
    }
  }
  
