/* Basic layout styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

section {
  padding: 1rem 1rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.hero {
  background: #005b96;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.grid {
  display: flex;
  gap: 1rem;
}

.card {
  flex: 1;
  padding: 1.5rem;
  background: #f5f5f5;
  border-radius: 8px;
}

/* Header */
.site-header {
  background: #AC3E49;
  color: #fff;
  padding: 1rem 0;
}

.site-header a {
  color: #fff;
  text-decoration: none;
}

.site-navigation li {
  display: inline-block;
}

/* Clear floats */
.container::after {
  content: "";
  display: table;
  clear: both;
}

/* Flex container for header */
.site-header .container {
    display: flex;
    align-items: center;   /* vertically center items */
    justify-content: space-between; /* logo left, menu right */
    flex-wrap: wrap;       /* allows wrapping on small screens */
    gap: 1rem;             /* optional spacing */
}

/* Logo */
.site-logo img {
    max-height: 130px;      /* adjust as needed */
    height: auto;
    width: auto;
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;          /* horizontal menu */
    gap: 1rem;              /* space between menu items */
}

.site-navigation a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}