@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --brand: #0b3c5d;
  --brand-accent: #1b9aaa;
  --soft-bg: #f7fbfd;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  background: radial-gradient(circle at top right, #eef8ff 0%, #ffffff 40%);
  color: #1a2d3b;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brand);
}

h2 {
  margin-top: 1.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid #e7f0f5;
}

.navbar {
  border-bottom: 1px solid #d9e8ef;
  box-shadow: 0 2px 12px rgba(11, 60, 93, 0.08);
}

.navbar-brand-logo {
  position: relative;
  width: 78px;
  height: 78px;
  padding: 0 !important;
  margin-right: 0.7rem;
  border-radius: 10px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(11, 60, 93, 0.24);
  background: #ffffff;
  border: 3px solid #dbe8ef;
}

.navbar-brand-logo img.navbar-logo {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 8px;
  object-fit: cover;
  transform: none;
  padding: 0;
  border: 0;
  display: block;
}

@media (min-width: 992px) {
  .navbar-brand-logo {
    width: 92px;
    height: 92px;
  }

  .navbar-brand-logo img.navbar-logo {
    width: 100% !important;
    height: 100% !important;
    padding: 0;
    transform: none;
  }
}

.quarto-title-banner {
  background: linear-gradient(120deg, var(--brand) 0%, #155a85 45%, var(--brand-accent) 100%);
}

.quarto-title-banner .quarto-title .title,
.quarto-title-banner .quarto-title .subtitle {
  color: #ffffff;
}

main.content {
  background: #ffffff;
  border: 1px solid #e3eef3;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 8px 30px rgba(8, 37, 56, 0.05);
}

p {
  margin: 0.8rem 0;
}

ul, ol {
  margin: 0.7rem 0 1rem;
}

li {
  margin: 0.25rem 0;
}

a {
  text-underline-offset: 2px;
}

.logos {
  display: inline-block;
  height: 55px;
  border-radius: 6px;
  margin: 6px;
}

.logosupport {
  display: inline-block;
  height: 70px;
  border-radius: 6px;
  margin: 6px;
}

.citypicture {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  margin: 8px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #dfebf1;
  border-radius: 10px;
  overflow: hidden;
}

table td,
table th {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid #e6eff4;
  vertical-align: top;
}

table th {
  background: #f0f7fb;
  color: #123a56;
  font-weight: 700;
}

table tr:nth-child(even) td {
  background: #f2f7fb;
}

table td:first-child {
  width: 28%;
  white-space: nowrap;
}

iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #dbe8ef;
  margin: 0.5rem 0 1rem;
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

footer.footer {
  border-top: 1px solid #d9e8ef;
  background: var(--soft-bg);
}
