:root {
  --primary-color: #2a4365;
  --secondary-color: #f64c14;
  --accent-color: #00a6ed;
  --text-color: #000b3f;
  --background-color: #f9f9f9;
  --font-family: "Quicksand", Arial, sans-serif;
  --border-radius: 0.5rem;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
  text-align: center;
}

.header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header-row img {
  width: 40px;
  height: auto;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.heading-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.heading-link:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
  border-radius: var(--border-radius);
  padding: 0 0.2rem; /* Adds a slight padding to match the button style */
}

/* Main Content */
main {
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.image-container {
  flex: 0 1 auto;
  display: flex;
  width: 100%;
  justify-content: center;
}

.image-container img {
  max-width: min(100%, 800px);
  height: auto;
  border-radius: var(--border-radius);
}

.text-content {
  flex: 2 1 600px;
}

.text-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.text-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.text-content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 1rem;
}

.text-content ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.text-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.call-to-action {
  margin: 2rem 0;
  text-align: center;
}

.cta-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent-color);
}

/* Footer */
footer {
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
  text-align: center;
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-content {
    flex: 1 1 100%;
  }
}
