body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f4f8;
  color: #1f2a37;
}

.header {
  background: #1351b4;
  color: #ffffff;
  padding: 15px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-content h1 {
  margin: 0;
  font-size: 1.5rem;
}

.header-content span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.95rem;
}

.logo {
  width: 120px;
  height: 100px;
}

.search {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  margin: 20px 0;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  font-size: 1rem;
}

.service-section {
  margin-bottom: 26px;
}

.service-section h2 {
  margin: 0 0 12px;
}

.grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover,
.card:focus-visible {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.icon {
  font-size: 24px;
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.card-desc {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

.footer {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.footer-link {
  color: #1351b4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
  color: #0b3d91;
  outline: none;
}

@media (max-width: 768px) {
  .header-content {
    align-items: flex-start;
  }

  .logo {
    width: 100px;
    height: 84px;
  }

  .header-content h1 {
    font-size: 1.2rem;
  }
}