/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Verdana, sans-serif;
  color: #444444;
  background-color: #ffffff;
}

/* Restore natural spacing after reset */
p {
  margin-top: 0;
  margin-bottom: 1rem; /* Space between paragraphs */
  line-height: 1.3;
}

h1, h2, h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

ul, ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Layout sections */
.header, .info-section, .contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.header img {
  max-width: 100%;
  height: auto;
}

.header-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px;
}

/* Headings */
h1 {
  font-size: 16px;
  font-weight: bold;
}

h2, h3 {
  font-size: 15px;
  font-weight: bold;
}

/* Boxes */
.red-box {
  background-color: #4dd0e1;
  color: black;
  padding: 5px;
  border-radius: 0;
  font-size: 14px;
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

.contact-section td {
  vertical-align: top;
  padding: 10px;
}

/* Links */
a {
  color: #666666;
  text-decoration: underline; /* Always underlined */
}

a:hover {
  color: #333333;
}

.header-text a {
  color: #007BFF; /* Bootstrap blue */
  font-weight: bold;
  transition: color 0.2s ease;
}

.header-text a:hover,
.header-text a:focus {
  color: #0056b3; /* Darker blue */
}

/* Media queries */
@media (max-width: 500px) {
  .header, .info-section, .contact-section {
    flex-direction: column;
  }
  .column {
    flex: 1 1 100%;
  }
  p {
    margin-bottom: 0.75rem; /* Slightly tighter spacing on small screens */
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
  .header-text {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}