@font-face {
    font-family: 'Roboto-Medium';
    src: url('/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto-Medium', sans-serif;
    overflow: hidden;
    color: var(--MainFontColor);
    background-color: var(--MainBackColor);
  }

.logo {
    width: 350px;
    height: 100px;
    background-image: url('/images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
  
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--FormBackColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    z-index: 100;
    border-bottom: 4px solid rgb(0,0,0,0.5);
}

.loginA {
    font-weight: bold;
    font-size: 16px;
    color: white;
    text-decoration: none;
    background-color: var(--MainBackColor);
    border: 1px solid var(--MainBorderColor);
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    transition: background-color 1.5s ease;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.legalsA{
    font-size: smaller !important;
    margin: 5px;
    font-weight: normal !important;
    color: white;
}
  
footer {
    background: var(--FormBackColor);
    color: var(--MainFontColor);
    padding: 1em;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    border-top: 2px solid var(--MainBorderColor);
}
  
  main {
    position: absolute;
    top: 60px;
    bottom: 50px;
    left: 0;
    right: 0;
    overflow-y: auto;
    padding: 1em;
    background: var(--MainBackColor);
  }
  

  .content {
    padding-top: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  .content h1 {
    font-size: 2.8em;
    margin-bottom: 0.3em;
    color: #007c3d;
  }
  
  .content p {
    font-size: 1.1em;
    color: #646464;
    margin-bottom: 1.5em;
    line-height: 1.6;
  }
  
  .content h2 {
    margin-top: 2.5em;
    margin-bottom: 0.5em;
    font-size: 1.6em;
    color: #007c3d;
  }
  
  .content ul {
    margin: 1em 0 2em 1em;
    padding-left: 1.2em;
  }
  
  .content ul li {
    margin-bottom: 0.7em;
    list-style: none;
    position: relative;
    padding-left: 1.6em;
    line-height: 1.5;
  }
  
  .content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #007c3d;
    font-weight: bold;
  }

  .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-around;
    margin-top: 2em;
  }
  
  .pricing-card {
    background: var(--MainBackColor);
    border: 1px solid var(--MainBorderColor);
    border-radius: 10px;
    padding: 1.5em;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .pricing-card h3 {
    margin-bottom: 0.3em;
    color: #007c3d;
  }
  
  .pricing-card .tagline {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 1em;
  }
  
  .pricing-card ul {
    margin: 0 0 1em 0;
    padding-left: 1.2em;
  }
  
  .pricing-card ul li {
    margin-bottom: 0.5em;
    list-style: none;
    position: relative;
    padding-left: 1.5em;
  }
  
  .pricing-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007c3d;
    font-weight: bold;
  }
  
  .pricing-card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #b8b8b8;
  }
  
  .pricing-card .price span {
    font-size: 0.9em;
    color: #666;
  }
  
  .pricing-card.highlight {
    border: 2px solid #007c3d;
    box-shadow: 0 0 10px rgba(0,124,61,0.1);
  }