:root {
  color-scheme: light;
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8fafc;
}

.services-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #3a99d3 0%, #4cb9f5 100%);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: #475569;
}

.services-main {
  padding-top: 42px;
}

.services-panel {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.services-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0f172a;
  opacity: 0.72;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.services-top h1 {
  margin: 0;
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  line-height: 1.05;
}

.services-top p {
  margin: 16px 0 0;
  max-width: 720px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.24);
  background: #ffffff;
  color: #1d4ed8;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dropdown-button:hover,
.dropdown-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 25px rgba(59, 130, 246, 0.12);
  background: #eff6ff;
}

.services-dropdown {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.service-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-link i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  font-size: 1rem;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateX(4px);
  border-color: rgba(59, 130, 246, 0.34);
  box-shadow: 0 16px 24px rgba(15, 23, 42, 0.08);
}

@media (max-width: 780px) {
  .services-page {
    padding: 24px 16px;
  }

  .services-panel {
    padding: 24px;
  }

  .services-top {
    align-items: flex-start;
  }

  .dropdown-button {
    width: 100%;
    justify-content: center;
  }
}
