  html{scroll-behavior:smooth}
  .container-retro {margin:0 auto;animation:fadeInUp 1s ease-out}
     .header-block {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: linear-gradient(90deg, #ffe6f0, #ffffff);
      border-bottom: 4px solid #ff3399;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      box-sizing: border-box;
      flex-wrap: wrap;
         margin-bottom: 25px;
    }

    .header-logo {
      width: 150px;
      height: 132px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .header-text {
      font-size: 20px;
      color: #333;
      font-weight: bold;
      max-width: 500px;
    }

    @media (max-width: 600px) {
      .header-block {
        flex-direction: column;
        text-align: center;
      }

      .header-logo {
        margin: 0 0 15px 0;
      }
    }

    .cner {
      display: flex;
      flex-direction: row;
      gap: 30px;
      max-width: 1000px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .info-block {
      flex: 1 1 300px;
      min-width: 280px;
      max-width: 450px;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .info-block:hover {
      transform: translateY(-5px);
    }

    .block-1 {
      background: linear-gradient(135deg, #ffe6e6, #fff);
      border-left: 6px solid #ff3366;
    }

    .block-2 {
      background: linear-gradient(135deg, #e6f2ff, #fff);
      border-left: 6px solid #3366cc;
    }

    .info-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 12px;
      color: #333;
    }

    .info-text {
      font-size: 15px;
      color: #444;
      line-height: 1.5;
    }

    @media (max-width: 600px) {
      .container {
        flex-direction: column;
        align-items: center;
      }
    }
  p.intro {font-size:1.1rem;margin-bottom:2rem}
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCard 1s ease-out forwards;
  }
  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.2s; }
  .card:nth-child(3) { animation-delay: 0.3s; }
  .card:nth-child(4) { animation-delay: 0.4s; }
  .card:nth-child(5) { animation-delay: 0.5s; }
  .card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #222;
  }
  .card p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    color: white;
    background-color: #0295a8;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  .cta-button:hover {
    background-color: #027c8c;
    color: white;
    transform: scale(1.05);
  }

  .social-link {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    color: linear-gradient(135deg, #00bbd3, #047e8d);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.5rem;
  }

  .social-link i {
    font-size: 1.2rem;
    transform: rotate(45deg);
  }    
   .cnr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advertising-title {
    font-size: 24px;
    color: #333;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
      @keyframes fadeInCard {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
        .cntr {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width:100%;
    }

    .info-block2 {
      width: 100%;
      padding: 25px;
            margin: 25px 0 25px 0;
         border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      background: linear-gradient(135deg, #fffbe6, #fff);
      border-left: 6px solid #ffcc00;
      transition: transform 0.3s ease;
    }

    .info-block2:hover {
      transform: translateY(-5px);
    }

    .info-title2 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 12px;
      color: #333;
    }

    .info-text2 {
      font-size: 15px;
      color: #444;
      line-height: 1.5;
    }

    @media (max-width: 600px) {
      .info-block2 {
        margin: 10px 0;
      }
    }