/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Light Theme */
body {
  font-family: system-ui, sans-serif;
  background-color: #ececec;
  color: #111;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.right-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.right-links button {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

main {
  padding: 2rem 1rem;
}

.services,
.whytrust {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.footer {
  background-color: #fff;
  border-top: 1px solid #ccc;
  text-align: center;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* Dark Theme */
body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode header,
body.dark-mode .footer {
  background-color: #1e1e1e;
  border-color: #333;
}

body.dark-mode .card {
  background-color: #222;
}

body.dark-mode a:hover {
  color: #66b2ff;
}
