  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Arial", sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f1f1f2;
      }

      
      .header {
            background: linear-gradient(135deg, #1995ad 0%, #a1d6e2 100%);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(25, 149, 173, 0.2);
        }

        .header__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #f1f1f2;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .header__logo:hover {
            transform: scale(1.05);
        }

        .header__nav {
            display: flex;
            gap: 2rem;
        }

        .header__link {
            color: #f1f1f2;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            background: #1994ad89;
        }

        .header__link:hover {
            color: #bcbabe;
            background: rgba(255, 255, 255, 0.2);
        }

        .header__burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            gap: 4px;
        }

        .burger__line {
            width: 25px;
            height: 3px;
            background: #f1f1f2;
            transition: all 0.3s ease;
        }

        .header__burger.active .burger__line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .header__burger.active .burger__line:nth-child(2) {
            opacity: 0;
        }

        .header__burger.active .burger__line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
      .hero {
        background: linear-gradient(
          45deg,
          #f1f1f2 0%,
          #bcbabe 50%,
          #a1d6e2 100%
        );
        padding: 1rem 0;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
      }

      .hero__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        position: relative;
        z-index: 2;
      }

      .hero__title {
        font-size: 2.8rem;
        font-weight: bold;
        color: #1995ad;
        text-align: center;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      }

      .hero__subtitle {
        font-size: 1.3rem;
        color: #333;
        text-align: justify;
        margin-bottom: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      
      .offerwall {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .offer {
        background: #f1f1f2;
        border: 2px solid #bcbabe;
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        align-items: center;
        gap: 2rem;
        transition: border-color 0.3s ease;
      }

      .offer:hover {
        border-color: #1995ad;
      }

      .offer__logo {
        width: 180px;
        height: 80px;
        border-radius: 8px;
        object-fit: contain;
        flex-shrink: 0;
        background: #1994ad59;
        padding: 10px;
      }

      .offer__bonus {
        font-size: 1.5rem;
        font-weight: bold;
        color: #1995ad;
        flex: 1;
      }

      .offer__rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
      }

      .rating__stars {
        display: flex;
        gap: 2px;
      }

      .rating__star {
        width: 16px;
        height: 16px;
        background: #a1d6e2;
        clip-path: polygon(
          50% 0%,
          61% 35%,
          98% 35%,
          68% 57%,
          79% 91%,
          50% 70%,
          21% 91%,
          32% 57%,
          2% 35%,
          39% 35%
        );
      }

      .rating__score {
        font-weight: bold;
        color: #1995ad;
        font-size: 1rem;
      }

      .offer__button {
        background: #1995ad;
        color: #f1f1f2;
        padding: 0.8rem 1.5rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        flex-shrink: 0;
      }

      .offer__button:hover {
        background: #a1d6e2;
      }

      .offer__rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
      }

      .rating__stars {
        display: flex;
        gap: 2px;
      }

      .rating__star {
        width: 16px;
        height: 16px;
        background: #a1d6e2;
        clip-path: polygon(
          50% 0%,
          61% 35%,
          98% 35%,
          68% 57%,
          79% 91%,
          50% 70%,
          21% 91%,
          32% 57%,
          2% 35%,
          39% 35%
        );
      }

      .rating__score {
        font-weight: bold;
        color: #1995ad;
        font-size: 1rem;
      }

      .offer__button {
        background: #1995ad;
        color: #f1f1f2;
        padding: 0.8rem 1.5rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        flex-shrink: 0;
      }

      .offer__button:hover {
        background: #a1d6e2;
      }

      
      .content {
        padding: 4rem 0;
        background: #f1f1f2;
      }

      .content__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
      }

      .content__title {
        font-size: 2.5rem;
        color: #1995ad;
        margin-bottom: 2rem;
      }

      .content__text {
        font-size: 1.2rem;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        line-height: 1.8;
        text-align: justify;
      }

      
      .gallery {
        padding: 4rem 0;
        background: linear-gradient(135deg, #bcbabe 0%, #a1d6e2 100%);
      }

      .gallery__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
      }

      .gallery__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }

      .gallery__item {
        display: block;
        transition: transform 0.3s ease;
      }

      .gallery__image {
        width: 80%;
        height: 150px;
        object-fit: contain;
        border-radius: 15px;
        transition: all 0.3s ease;
      }

    
      
      .footer {
        background: #1995ad;
        padding: 3rem 0 2rem;
        color: #f1f1f2;
      }

      .footer__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
      }

      .footer__links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer__link {
        color: #f1f1f2;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
      }

      .footer__link:hover {
        color: #a1d6e2;
        background: rgba(255, 255, 255, 0.2);
      }

      .footer__additional {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
      }

      .footer__additional .footer__link {
        background: rgba(161, 214, 226, 0.2);
      }
      .footer__text{
        text-align: center;
        font-size: 0.9rem;
        color: #f1f1f2;
        margin-top: 1rem;
      }
      
      @media (max-width: 768px) {
        .hero__title {
          font-size: 2.5rem;
        }

        .offer {
          gap: 1.5rem;
          padding: 1.5rem;
        }

        .offer__logo {
          width: 70px;
          height: 70px;
        }

        .offer__bonus {
          font-size: 1.3rem;
        }

        .offer__button {
          padding: 0.7rem 1.2rem;
          font-size: 0.9rem;
        }

        .gallery__grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .footer__links {
          flex-direction: column;
          align-items: center;
        }
        .hero__subtitle{
            display: none;
        }
        .header__nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1995ad 0%, #a1d6e2 100%);
                flex-direction: column;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            }

            .header__nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                z-index: 1000;
            }

            .header__link {
                padding: 1rem 2rem;
                border-radius: 0;
                background: transparent;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .header__link:last-child {
                border-bottom: none;
            }

            .header__burger {
                display: flex;
            }

            .header {
                position: relative;
            }
      }

      @media (max-width: 640px) {
        .offer {
          flex-wrap: wrap;
        }

        .offer__left {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }

        .offer__right {
          flex: 1;
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }

        .offer__bonus {
          font-size: 1.2rem;
          text-align: left;
        }

        .offer__rating {
          justify-content: flex-start;
        }
      }

      @media (max-width: 480px) {
        .hero__title {
          font-size: 2rem;
        }

        .header__logo {
          font-size: 2rem;
        }

        .offer {
          padding: 1.2rem;
        }

        .offer__logo {
          width: 145px;
          height: 60px;
        }

        .offer__bonus {
          font-size: 1.1rem;
        }

        .offer__button {
          padding: 0.6rem 1rem;
          font-size: 0.85rem;
        }
      }
.content {
  padding: 30px;
  background-color: #f9f9f9;
}

.content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.content__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.content__text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}
.content__subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

.content__links {
  margin-bottom: 20px;
}

.content__links ul {
  list-style-type: none;
  padding-left: 0;
}

.content__links ul li {
  margin-bottom: 10px;
}

.content__link {
  text-decoration: none;
  font-size: 1.1rem;
  color: #007bff;
  transition: color 0.3s ease;
}

.content__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.content__link:active {
  color: #004085;
}
