body {
    font-family: "Roboto", sans-serif;
}
    
    h1 {
      color: #333333;
      font-size: 35px;
      font-style: normal;
      font-weight: 800;
      line-height: 124%;
      margin: 0;
      margin-bottom: 10px;
    }
    h2 {
      color: #333333;
      font-size: 28px;
      font-style: normal;
      font-weight: 800;
      line-height: 124%;
      margin: 10px 0;
    }
    h3{
        font-size: 20px;
        margin: 5px 0;
    }
    p {
      color: #272828;
      font-size: 17px;
      font-weight: 400;
      margin: 0;
    }
    .wrap-cookie{
        margin: 0 auto;
        max-width: 1230px;
        padding: 0 15px;
    }
    .cookie-notice {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #141414e3;;
      color: #fff;
      font-size: 14px;
      padding: 15px 20px;
      z-index: 9999;
      transition: transform 0.4s ease;
    }

    .cookie-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      max-width: 90%;
      margin: 0 auto;
      color: white;
    }

    .cookie-notice a {
      color: #80bfff;
      text-decoration: underline;
    }

    .cookie-notice button {
      background: #1976d2;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 4px;
      cursor: pointer;
    }

    .cookie-notice.hidden {
      transform: translateY(100%);
    }
    .cookie-text {
      color: white;
    }
    
    @media (max-width: 768px) {
        h1{
            font-size: 29px;
        }
        h2{
            font-size: 25px;
        }
        h3{
            font-size: 18px;
        }
        p{
            font-size: 15px;
        }
        .cookie-notice{
            padding: 15px 0;
        }

        .cookie-container {
            max-width: 95%;
            flex-direction: column;
        }
    }