body {
font-family: "Roboto", sans-serif;
background: #E6EFF3;
}
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;
        background: white;
        padding: 3rem;
        border-radius: 10px;
    }
    .cookie-notice {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(20, 20, 20, 0.95);
      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: #77a5d3;
      text-decoration: underline;
    }

    .cookie-notice button {
      background: #217db1;
      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;
        }
        .wrap-cookie{
            padding: 2rem;
        }
    }
    
    @media (max-width: 468px) {
        h1{
            font-size: 25px;
        }
        h2{
            font-size: 20px;
        }
        h3{
            font-size: 16px;
        }
        p{
            font-size: 14px;
        }
        ul{
            padding-left:29px;
        }
    }