/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1;
}

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

ul {
  margin: 0rem 0 1rem 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
  line-height: 1;
}


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

/* Two-column layout */
.two-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}

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

.two-columns .column:first-child {
  flex: 0 0 auto;
  max-width: 400px;
}

.two-columns .column:last-child {
  flex: 1 1 auto;
  min-width: 250px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  margin: 0.1rem 0;
  border-radius: 4px;
}

/* Boxes */
.red-box {
  background-color: #a0f0f5;
  color: black;
  padding: 5px;
  font-size: 14px;
}

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

a:hover {
  color: #333333;
}

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

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

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

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

/* Hero text (intro section) */
.hero-text {
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* CTA button */
.cta-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #4dd0e1;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #39b6c4;
}

/* Badges / Partners */
.badges {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.badges img {
  display: inline-block;
  max-height: 30px;
}

.footer-badges {
  text-align: center;
  padding-top: 20px;
}

/* Media queries (responsive) */
@media (max-width: 600px) {
  .two-columns {
    flex-direction: column;
    align-items: stretch;
  }
  .two-columns .column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .header-text {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  .hero-text h1 {
    font-size: 16px;
  }
  .cta-button {
    width: 100%;
    text-align: center;
  }
  .badges {
    justify-content: center;
  }
}

