 body {
      font-family: "Segoe UI", sans-serif;
      background-color: #e8fcfc;
      margin: 0;
      padding: 0;
      text-align: center;
    }

    .container {
      background-color: #fff;
      margin: 50px auto;
      padding: 40px;
      /*max-width: 800px;*/
      margin-top: 50px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 

    }

    .logo {
      margin-bottom: 20px;
    }

    .logo img {
      height: 40px;
    }

    h1 {
      font-size: 18px;
      color: #008d99;
      margin-bottom: 20px;
    }
   
    .choice-text {
      margin: 0 auto;
      text-align: left;
      width: 580px;
      font-size: 15px;
      color: #007a88;
      
      margin-bottom: 30px;
    }
    
    .button-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-bottom: 30px;
    }

    .option-button {
      background-color: #00a1a9;
      color: white;
      /*font-size: 24px;*/
      border: none;
      border-radius: 25px;
      padding: 30px 20px;
      width: 265px;
      box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: transform 0.2s;
      text-align: left;
      display: flex;
      align-items: center;
    }

    a.option-button:nth-of-type(2) {
      /*height: 60%;
      margin-top: 3%;
      margin-bottom: 3%;*/
      background-color: #9bb5b6;
    }
  

    a span.customertype {
        font-size: 24px;
    }
    
    a span.term {
        font-size: 16px
    }

    .option-button:hover {
      transform: translateY(-3px);
    }

    .note {
      font-size: 13.5px;
      color: #006e7d;
      margin-top: 10px;
      margin-left: 20px;
      /*line-height: 1.6;
*/    }

    .footer {
      font-size: 12px;
      color: #555;
      margin-top: 50px;
    }

    .powered {
      text-align: left;
      margin-left: 20px;
      font-size: 12px;
      color: #333;
    }