body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f5f5f5;
}

header, footer {
	background: #001d3e;
	color: white;
	padding: 15px 20px;
	text-align: center;
}

nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 10px;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

nav a:hover {
	text-decoration: underline;
}

main {
	padding: 20px;
	max-width: 1000px;
	margin: auto;
	background: white;
}

.site-footer {
  background: #222;
  color: #eee;
  padding: 40px 20px;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.card {
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
form {
	display: grid;
	gap: 15px;
}

input, textarea {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
}

textarea {
	min-height: 150px;
	resize: vertical;
}

button {
	padding: 12px;
	background: #333;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
}

button:hover {
	background: #555;
}

@media (max-width: 600px) {
	main { padding: 15px; }
}

.about {
	max-width: 900px;
	margin: auto;
	padding: 20px;
}

.about h2 {
	margin-bottom: 10px;
}

.about h3 {
	margin-top: 25px;
}

.about ul {
	padding-left: 20px;
}

.about li {
	margin-bottom: 8px;
}

/* Add a black background color to the top navigation */
.main-nav {
  background-color: #001d3e;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.nav-logo {
	color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo a {
	height: 160px;
}
img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.footer-contact img {
	height: 160px;
}

.footer a:-webkit-any-link {
	color: #f2f2f2;
}

.agb h2 {
	font-weight: bold;
	gap: 10px;
	display: flex;
}

.privacy h2 {
	font-weight: bold;
	gap: 10px;
	display: flex;
}

.iconssvg {
	padding: 2px;
}

.font-semibold {
	font-weight: bold;
	margin-right: 5px;
}

.agb .font-semibold {
	color: #e7000b;
	font-weight: bold;
	margin-right: 5px;
}
/* Style the links inside the navigation bar */
.main-nav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.main-nav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.main-nav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.main-nav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .main-nav a {display: none;}
  .main-nav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .main-nav.responsive {position: relative; display: block;}
  .main-nav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
	display: block;
  }
  .main-nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


.to-red-800 {
    --tw-gradient-to: var(--color-red-800);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
}

.space-y-2 li {
	display: block;
}

.grid> .card{
   flex:1 1 auto;
}
.gap-6 {
    gap: calc(.25rem * 6);
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}