* {
      box-sizing: border-box;
    }
	
    body {
      margin: 0;
      padding:0;
      font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f4f4;
      color: #333;
    }

    main {
      max-width: 600px;
      margin: -30px auto 0 auto;
      padding: 1rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .container{
      width:100%;
      margin-top:30px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }
    
    .header {
      display:flex;
      padding:10px;
      border-bottom:2px solid #e4003b;
    }
    
    .header img{
      width:50%;
    }
    
    .utficon {
      font-size: 28px;
      line-height: 28px;
    }
    
    a img{
      width:18pt;
      height:18pt;
    }

    a.button {
      text-align: center;
      text-decoration: none;
      padding: 1rem;
      border-radius: 8px;
      background-color: #055da9;
      color: white;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: flex;
      gap: 20px;
    }

    a.button:hover {
      background-color: #e4003b;
    }

    @media (min-width: 768px) {
      main {
        padding: 2rem;
      }
    }
    
    .btn-arrow {
    content: "\f102";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: calc(var(--arrow-size) * .875);
    color: var(--arrow-color);
    -webkit-transition: color 480ms cubic-bezier(.225, .76, .375, .93), background-color 480ms cubic-bezier(.225, .76, .375, .93), border-color 480ms cubic-bezier(.225, .76, .375, .93), -webkit-box-shadow 480ms cubic-bezier(.225, .76, .375, .93);
    transition: color 480ms cubic-bezier(.225, .76, .375, .93), background-color 480ms cubic-bezier(.225, .76, .375, .93), border-color 480ms cubic-bezier(.225, .76, .375, .93), -webkit-box-shadow 480ms cubic-bezier(.225, .76, .375, .93);
    transition: color 480ms cubic-bezier(.225, .76, .375, .93), background-color 480ms cubic-bezier(.225, .76, .375, .93), border-color 480ms cubic-bezier(.225, .76, .375, .93), box-shadow 480ms cubic-bezier(.225, .76, .375, .93);
    transition: color 480ms cubic-bezier(.225, .76, .375, .93), background-color 480ms cubic-bezier(.225, .76, .375, .93), border-color 480ms cubic-bezier(.225, .76, .375, .93), box-shadow 480ms cubic-bezier(.225, .76, .375, .93), -webkit-box-shadow 480ms cubic-bezier(.225, .76, .375, .93);
}