/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f3f4f6;
}

/* Layout */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: white;
  color: #1e3a8a;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta-button:hover {
  background: #e5e7eb;
}

/* Sections */
.section {
  background: white;
}

.section.alt {
  background: #f9fafb;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Services */
.services {
  list-style: disc;
  padding-left: 1.5rem;
}

.services li {
  margin-bottom: 0.5rem;
}

/* Contact */
.email a {
  font-size: 1.1rem;
  color: #2563eb;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

button {
  margin-top: 1rem;
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #1e40af;
}

.copy-message {
  margin-top: 0.5rem;
  color: #059669;
}

/* Footer */
footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
}
