:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main {
  margin-top: 30px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: url('images/PMBackground.png');
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-logo {
  width: 40px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--primary-dark);
}

.section {
  padding: 5rem 0;
}

.hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
}

.hero h1,
.hero p {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
}

.hero p {
  color: var(--muted);
  margin: 0 0 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.button.secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

#services h2 {
  text-align: center;
}

#services {
  background: transparent;
  margin-bottom: 25px;
  color: white;
}

.services-tagline {
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 1rem auto;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
}

#contact {
  color: white;
}


.section p {
  color: var(--muted);
  max-width: 760px;
}

.alternate {
  background: #eef2ff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-top: 0;
}

.meta-text {
  margin-top: 1rem;
  color: var(--primary-dark);
}

.site-footer {
  padding: 1.25rem 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 700px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}
