
/*Button*/
  .btn-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .btn-ctr,
  .btn-ctr:hover,
  .btn-ctr:focus,
  .btn-ctr:visited {
    color: white;
  }

  .btn-ctr {
    width: 20%;
    min-width: 150px;
    height: 40px;

    background: #4277af;
    color: white;
    text-decoration: none;
    border-radius: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
    box-sizing: border-box;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
  }

  /* Hover effect */
  .btn-ctr:hover {
    background: #401166;
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  }

  /* Click effect */
  .btn-ctr:active {
    transform: scale(0.98);
  }

    .btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
  }


    .btn-ntc,
  .btn-ntc:hover,
  .btn-ntc:focus,
  .btn-ntc:visited {
    color: white;
  }

  .btn-ntc {
    width: 40%;
    min-width: 200px;
    height: 150px;

    background: #4277af;
    color: white;
    text-decoration: none;
    border-radius: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
    box-sizing: border-box;

    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
  }

  /* Hover effect */
  .btn-ntc:hover {
    background: #401166;
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  }

  /* Click effect */
  .btn-ntc:active {
    transform: scale(0.98);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .btn-ntc {
      font-size: 12px;
    }
  }
 