body {
    background-color: #2f3136;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }
  
  
  h1 {
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
  }
  
  h2 {
    font-size: 24px;
  }
  
  p {
    font-size: 18px;
  }
  
  ul {
    list-style-type: disc;
  }
  
  a {
    color: #7289da;
    text-decoration: none;
  }

  .errore1 a{
    background: blue;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--primary-color);
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
  
 }
  
  
 .containerFooter {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.rowFooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;  
  gap: 30px;
}

.footer {
  background-color: #1a1a1d;
  padding: 40px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-col {
  flex: 1;
  min-width: 180px;
  padding: 0 15px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: #4e73df;
  height: 2px;
  width: 40px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #b1b1b1;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2d2d30;
  margin-top: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 13px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
      padding: 30px 0 15px;
  }
  
  .footer-col {
      width: 50%;
      padding: 0 15px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .footer-col {
      width: 100%;
      text-align: center;
  }
  
  .footer-col h4::before {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-col ul li a:hover {
      transform: none;
      padding-left: 5px;
  }
}