:root {
  --color-brand-blue: #0066B3;
  --color-brand-blue-dark: #003156;
  --color-brand-orange: #F08200;
  --color-text-primary: #404040;
  --color-text-secondary: #707172;
  --color-surface: #FFFFFF;
  --color-surface-muted: #F0F0F0;
  --color-border: #DFDEDD;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Frutiger Next Com", Arial, Verdana, sans-serif;
  color: var(--color-text-primary);
  background: var(--color-surface);
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */

header.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

header.site-header .container {
  display: flex;
  align-items: center;
}

header.site-header img.logo {
  height: 56px;
  width: auto;
}

/* Hero */

.hero {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.hero-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-brand-blue-dark);
  padding: 24px 40px;
  max-width: 90%;
}

.hero-title-overlay h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 700px) {
  .hero-title-overlay h1 {
    font-size: 28px;
  }
}

/* App columns */

.app-sections {
  background: var(--color-surface-muted);
  padding: 8px 0 80px;
}

.app-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .app-columns {
    grid-template-columns: 1fr;
  }
}

.app-column h2 {
  font-size: 27px;
  font-weight: 700;
  color: var(--color-brand-orange);
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-brand-orange);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 0;
  transition: background-color 0.15s ease;
}

.app-button:hover {
  background: #d67300;
}

.app-button .chevron {
  font-weight: 700;
  margin-left: 12px;
}

.app-column-placeholder {
  color: var(--color-text-secondary);
  font-size: 15px;
  text-align: center;
  border: 1px dashed var(--color-border);
  padding: 18px 24px;
}

footer.site-footer {
  padding: 24px 0;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 15px;
}
