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

/* Base */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #1f2933;
  background-color: #f9fafb;
  line-height: 1.6;
}

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

/* Navigation */
.header {
  background: #0f172a;
  padding: 20px 0;
}

.logo {
  color: #ffffff;
  font-size: 1.6rem;
}

.logo span {
  color: #22c55e;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #22c55e;
}

/* Buttons */
.btn {
  padding: 10px 18px;
  border-radius: 5px;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 100px 0;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 600px;
  margin-bottom: 30px;
}

/* Services */
.services-preview {
  padding: 80px 0;
}

.services-preview h3 {
  text-align: center;
  margin-bottom: 50px;
}

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

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Trust */
.trust {
  background: #e0f2fe;
  padding: 70px 0;
  text-align: center;
}

/* Footer */
.footer {
  background: #020617;
  color: #9ca3af;
  padding: 40px 0;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 15px;
  font-size: 0.8rem;
}

.footer-links {
  margin-top: 15px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: underline;
  margin-right: 15px;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #22c55e; /* your accent green */
}
