
#main.container {
    padding-top: 2rem;
     max-width: 1200px;
}
    .brand-section {
      /* Made background transparent (adjust 0.2 for more/less transparency) */
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 3rem;
      margin-bottom: 2rem;
      text-align: center;
      /* Optional: adds a slight blur to the background for a glass effect */
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .brand-logo {
      /* Doubled from 300px to 600px */
      max-width: 600px;
      width: 100%;
      height: auto;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    .feature-card {
      position: relative;
      background: #ffffff;
      border-radius: 12px;
      padding: 2.5rem 1.5rem;
      text-align: center;
      transition: all 0.25s ease;
      border: 1px solid #edf2f7;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .feature-card > a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 5;
      text-decoration: none;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      border-color: #e2e8f0;
    }
    .icon-wrapper {
      width: 70px;
      height: 70px;
      background: #f8fafc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .feature-card i {
      font-size: 1.8rem;
    }
    .feature-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #1a202c;
    }
    .feature-card p {
      font-size: 0.95rem;
      color: #64748b;
      line-height: 1.5;
      margin: 0;
    }
    .accent-blue {
      color: #3b82f6;
    }
    .accent-green {
      color: #10b981;
    }
    .accent-orange {
      color: #f59e0b;
    }
    .accent-red {
      color: #ef4444;
    }
    @media (max-width: 640px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }