body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

header {
    background-image: linear-gradient(to bottom, #004080, #000530);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    max-block-size: min(30svh, 20rem);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: justify;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

h2 {
    margin-top: 5px;
    font-weight: 400;
    font-size: 1.3em;
}

/* Two-column split "header"*/
.header .header-grid {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: clamp(16px, 4vw, 25px);
  align-items: center;
}

/* Make the logo scale nicely */

.header .header-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-block-size: min(35svh, 20rem);
}

/* Two-column split "details"*/
.details .details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
}

/* Make the image scale nicely */
.details .details-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  object-fit: cover;
  max-height: 480px; /* optional cap */
}

/* Optional spacing/typography tweaks */
.details .details-text h3 { margin-bottom: 0.5rem; }
.details .details-text ul { margin: 0; padding-left: 1rem; }

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .details .details-grid {
    grid-template-columns: 1fr;
  }
  /* If you want the image to appear above the text on mobile, uncomment: */
  /* .details .details-media { order: -1; } */
}

section {
    padding: 30px 0;
    background: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #004080;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    background-color: #004080;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.contact a {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-image: linear-gradient(to top, #004080, #000530);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
