body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
	color: white;
	font-size: 18px;
}

a {
    color: white; 
    text-decoration: none; 
    transition: color 0.3s; 
}

a:hover {
    color: #ff7900; 
}

ul {
     list-style-type:square;
}

header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 25px; 
    font-weight: bold;
    color: #ff7900; 
    margin-bottom: 10px; 
}

h2 {
    font-size: 22px; 
    font-weight: bold; 
    color: #ff7900;
    margin-bottom: 8px; 
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  background-color: #1032CF;
  border-color: #1032CF;
  color: #ffffff;
}


  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin: 10px 0;
  }

  .box {
    width: calc(20% - 5px); 
    margin-bottom: 20px;
    padding: 20px;
    border: 2px solid white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  @media (max-width: 768px) {
    .box {
      width: calc(33.333% - 5px); 
	  margin: 5px 0;
    }
  }

  @media (max-width: 480px) {
    .box {
      width: calc(50% - 5px); 
	  margin: 5px 0;
    }
  }






.content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1300px;
    margin: auto;
}

.block {
    width: calc(50% - 20px);
    background-color: #000;
    padding: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.square-button {
    display: block; 
    width: 100%; 
    height: 50px;
    background-color: #ff7900;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
	font-weight: bold;
    line-height: 50px;
    margin-bottom: 10px; 
    transition: background-color 0.3s; 

}

.square-button:hover {
    background-color: #cc6100; 
}

@media (max-width: 768px) {
    .block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Footer styling */


footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    width: 100%;
    position: relative;
    bottom: 0;
	font-size: 13px;
}
