
    .section-title{
          margin-top: 100px;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    }
    .rush-section {
      padding: 3rem 2rem;
      text-align: center;
      max-width: 1000px;
      margin: auto;
    }

    .rush-subtitle {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 2rem;
    }

    .rush-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .rush-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 1.5rem;
      transition: transform 0.2s;
    }

    .rush-card:hover {
      transform: translateY(-5px);
    }

    .rush-card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .rush-card h2 {
      margin: 0;
      font-size: 1.3rem;
      color: #333;
    }

    .interest-link {
      margin-top: 2rem;
    }

    .interest-btn {
      display: inline-block;
      background: #823882;
      color: white;
      padding: 0.8rem 1.6rem;
      border-radius: 8px;
      font-size: 1.1rem;
      text-decoration: none;
      transition: background 0.3s;
    }

    .interest-btn:hover {
      background: #bc8503;
    }