
  body {
    background-color: #0D1D29;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
  }

  .logo-left {
    position: absolute;
    top: 0;
    left: 20px;
    padding: 10px;
  }

  .top-center-image {
    display: flex;
    justify-content: center;
    margin-top: 100px;
  }

  .centered-text {
    text-align: center;
    color: #f2f2f5;
    font-size: 18px;
    margin-top: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 0 10px;
  }

  .button-group button {
    background-color: green;
    color: white;
    border: none;
    padding: 16px 32px;
    width: 80%;
    max-width: 300px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
  }

  .button-group button:hover {
    background-color: #45a049;
    transform: scale(1.03);
  }

  .ceta-button {
    background-color: purple;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
  }

  .footer {
    color: white;
    text-align: center;
    margin-top: 60px;
    padding: 30px 20px;
    font-size: 14px;
    background-color: #0D1D29;
  }

  .footer a {
    color: white;
    text-decoration: underline;
  }
