@font-face {
    font-family: 'Chivo';
    src: url("fonts/Chivo-Regular.woff2") format("woff2"),
         url("fonts/Chivo-Regular.woff") format("woff"),
         url("fonts/Chivo-Regular.ttf") format("truetype"),
         url("fonts/Chivo-Regular.eot");
    font-weight: 300;
    font-style: normal;
}

body {
      margin: 0;
      font-family: 'Chivo' !important;
      background-color: #F8F9FA;
      color: #1B263B;
      line-height: 1.6;
    }
    header {
      background: url('header.jpg') no-repeat center center/cover;
      color: #002ee0;
      text-align: center;
      padding: 120px 20px;
	min-height: 240px;
	
    }
    header h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.2rem;
    }
    .header-box {
	/*background-color: white;*/
	opacity: 80%;
	border-radius: 5px;
	text-align: center;
    }
    main {
      max-width: 1100px;
      margin: auto;
      padding: 40px 20px;
    }
    h2 {
      font-family: 'Poppins', sans-serif;
      color: #415A77;
    }
    .cta {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      background-color: #E0A800;
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .cta:hover {
      background-color: #c48f00;
    }
        
.footer {
      background-color: #333333;
      color: #fff;
      padding: 40px 20px 20px;
    }
    .footer-content {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 0 auto;
    }

    .footer-column {
      flex: 1 1 200px;
      margin: 10px;
    }

    .footer-column h4 {
      margin-bottom: 10px;
      font-size: 16px;
      border-bottom: 1px solid #666;
      padding-bottom: 5px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 8px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
    }

    .footer-column ul li a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      color: #aaa;
    }
/* Formular */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea, button {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
}

button {
    display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      background-color: #E0A800;
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background 0.3s;
}

button:hover {
    background-color: #c48f00;
}
