/* ============ Reset / base ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2430;
  background: #ffffff;
}
a { text-decoration: none; color: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============ Top nav ============ */
.topnav {
  border-bottom: 2px solid #111318;
  background: #ffffff;
}
.topnav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topnav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.topnav__link {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #696969;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  align-items: center;
  gap: 6px;
}
.topnav__link:hover { color: #2c6fbb; }

.topnav__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a2340;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown__caret { transition: transform 0.15s ease; }
.dropdown[data-open="true"] .dropdown__caret { transform: rotate(180deg); }

.dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e2e4e9;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 24, 33, 0.12);
  list-style: none;
  margin: 0;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 20;
}
.dropdown[data-open="true"] .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown__menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2430;
}
.dropdown__menu li a:hover { background: #f0f4fa; color: #2c6fbb; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 72px 24px 56px;
  text-align: center;
  color: #1f2430;

  /* TODO: replace with your own background image */
  background-color: #a8a9ab;
  background-image: url("images/hero-background.jpg");
  background-size: cover;
  background-position: center;
}
.hero__content {
  max-width: 720px;
  margin: 0 auto;
}
.hero__title {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 28px;
}
.hero__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.hero__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}
.hero__popular {
  margin: 18px 0 0;
  font-size: 14px;
}
.hero__popular a {
  color: #2c6fbb;
  text-decoration: underline;
}
.hero__popular span { margin: 0 8px; color: #4a4f58; }

/* ============ Cards ============ */
.cards {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.cards__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
.cards__row--center {
  grid-template-columns: minmax(0, 1fr);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.card {
  border: 1px solid #dfe2e8;
  border-radius: 8px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: #ffffff;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover {
  box-shadow: 0 8px 20px rgba(20, 24, 33, 0.1);
  transform: translateY(-2px);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dbe8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

/* ============ Responsive ============ */
@media (max-width: 640px) {
  .topnav__links { gap: 18px; }
  .hero__title { font-size: 26px; }
  .cards__row { grid-template-columns: 1fr; }
  .cards__row--center { max-width: none; }
}


/* ============ exported webhelp fixes ============ */

h1 {
color: #242424 !important;
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif !important; 
font-size: 32px !important;
font-weight: 500 !important;
line-height: 40px !important;
font-style: normal !important;
	
}

.card__title {
color: #242424 !important;
font-family: 'Segoe UI', Frutiger, 'Frutiger Linotype', 'Dejavu Sans', 'Helvetica Neue', Arial, sans-serif !important; 
font-size: 20px !important;
font-weight: 500 !important;
line-height: 28px !important;
font-style: normal !important;
	
}