  html{scroll-behavior:smooth}
  .container-soc {animation:fadeInUp 1s ease-out}
  .container-soc h1,h2 {margin: 30px 0 30px 0}
 .intro {font-size:1.1rem;margin-bottom:2rem}
  .cards {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  }
    .card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
  .card {
      min-width: 0;
    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;
    align-items: center;
    gap: 0.5rem;
    color: #222;
  }
  .card h2 span {
    min-width: 0; 
    overflow-wrap: break-word;
}
  .card p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .icon {
    font-size: 1.5rem;
  }
  .ftr {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #777;
  }
  .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;
       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;
}
.advertising-title::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #0295a8; 
    border-radius: 10px 10px 0 0;
    margin: 0 0 17px 0;
} 
      @keyframes fadeInCard {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 480px) {
  .card h2 span {
    font-size:12px;
    line-height: 1.2;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
