* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'monospace'; /* Ensure monospace font */
  background-color: #f5f5f5;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 2rem; */
}

.logo {
  max-width: 100%;
  height: auto;
  width: 300px; /* Adjust as needed for desktop size */
}

.title {
  text-align: center;
  font-size: 24px;
  /* margin: 1rem 0; */
  margin-top:-17px;
  margin-bottom: 25px;
  max-width: 80%; /* Limit width on larger screens */
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 12px;
  margin-bottom: 2rem;
}

.column {
  list-style-type: none;
  flex: 1 1 calc(50% - 1rem); /* Two columns, with a gap */
  margin: 0 0.5rem;
}

.column li {
  margin-bottom: 0.5rem;
}

.contact-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  align-self: center;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #0056b3;
}

/* Add this to your styles.css */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Ensure it takes at least the full viewport height */
  flex: 1; /* Allow this element to grow */
 /* padding: 2rem 0; /* Add some top and bottom padding */
}

