.quick-links-title {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 1.5rem;
      color: #333;
    }

    .logo {
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .logo img {
      max-width: 225px;
    }

    .nav-button {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      padding: 1rem;
      text-decoration: none;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      transition: background-color 0.3s, color 0.3s;
    }

    .nav-button:hover {
      background-color: #4aab3d;
      color: white;
    }

    .nav-button:hover i {
      color: white;
    }

    .nav-button i {
      font-size: 24px;
      margin-bottom: 0.5rem;
      color: #4aab3d;
      transition: color 0.3s;
    }

    .nav-button span {
      font-size: 14px;
    }

    .btn-spacing {
      margin-bottom: 1.5rem; /* extra space between rows */
    }