
/* ========== Global Page Styles ========== */
body {
  background: #f5f5f5;             /* Change background color here */
  /* Background color (change as needed) */
  background-color: #e0e0e0; 

  /* OR Background image (uncomment to use) */
  /* background-image: url('background.jpg'); */
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center center; 
  background-attachment: fixed; 

  margin: 0;
  font-family: Arial, sans-serif;  /* Change font here */
  color: #333;                     /* Change main text color here */
  padding: 2em;
}

/* ========== Headings ========== */
h1 {
  text-align: center;
  margin-bottom: 0; /* no extra line after heading */
  color: #003366;                  /* Main title color */
}

h4 {
  font-size: 24px;  /* Section title size */
  margin-bottom: 0; /* no extra line after heading */
  border-bottom: 1px solid #ccc;
}

/* ========== Lists ========== */
ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  margin: 0.4em 0;
}

/* ========== Links ========== */
a {
  color: #0055aa;                  /* Change hyperlink color here */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.content {
  display: flex;
  justify-content: space-between; /* pushes first to left, second to right */
  gap: 2em;
}

/* ========== Layout Columns ========== */
.columns-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  margin-top: 2em;
  flex-wrap: nowrap;
}

.column {
  background: white;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid #ccc; /* added border */
  width: max-content;
  min-width: 220px;
}

/* ========== Center Icon Row ========== */
.center-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}

.center-icons img {
  width: 48px;   /* Adjust image size here */
  height: 48px;
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background: white;
  border-radius: 8px;
  padding: 1em;
  margin: 1em auto;
  width: fit-content;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  gap: 1em;
}

.icon-group a img {
  width: 48px;
  height: 48px;
}

.spacer-icon.left {
  margin-right: 48px; /* 1 icon widths */
}

.spacer-icon.right {
  margin-left: 48px; /* 1 icon widths */
}

.spacer-icon img {
  width: 48px;
  height: 48px;
}