.sibs-offers-modern {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #f8fbff, #e6eef7);
    text-align: center;
  }

  .sibs-offers-modern .container {
    max-width: 1200px;
    margin: auto;
  }

  .sibs-offers-modern h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .sibs-offers-modern .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  .modern-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .card-content {
    padding: 25px;
    text-align: left;
  }

  .card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #083577;
  }

  .card-description {
    background: linear-gradient(to right, #f0f4ff, #eaf1fb);
    color: #2c3e50;
    font-size: 1.05rem;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 15px;
    line-height: 1.8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: justify;
    font-weight: 400;
    border-left: 5px solid #0056ff;
  }


  .modern-card:hover .card-description {
    background: linear-gradient(to right, #e2eefd, #d8ebfb);
    border-left-color: #083577;
  }


  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }

  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }

  @media (max-width: 768px) {
    .sibs-offers-modern h2 {
      font-size: 2rem;
    }

    .card-content {
      padding: 20px;
    }

    .card-content h4 {
      font-size: 1.2rem;
    }

    .card-description {
      font-size: 0.95rem;
    }
  }