/********** Template CSS **********/

 .containernew {
      max-width: 1000px;
      margin: 0 auto;
    }

.card {
      display: flex;
      gap: 15px;
      border: 1px dashed #ccc;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      background: #fff;
      transition: box-shadow 0.3s;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .card:hover {
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .logo {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }

    .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 8px;
    }

    .info {
      flex: 1;
    }

    .info h3 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #7a5f3d;
    }

    .desc {
      overflow: hidden;
      max-height: 60px;
      transition: max-height 0.5s ease;
    }

    .desc.expanded {
      max-height: 300px;
    }

    .read-more {
      margin-top: 10px;
      display: inline-block;
      background: #e11;
      color: #fff;
      font-size: 14px;
      padding: 5px 12px;
      border-radius: 20px;
      cursor: pointer;
      border: none;
    }

    @media (max-width: 768px) {
      .card {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .info {
        text-align: center;
      }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }