body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: #222;
  background: #f7f9fb;
}

header {
  background: #0a0f1c;
  color: white;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo a {
  color: #00aaff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5em;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #00aaff;
}

.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(160deg, #0a0f1c 0%, #071a33 100%);
  color: white;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.3em;
}

.hero h2 {
  font-weight: 400;
  margin-bottom: 1em;
}

.btn-primary {
  background: #00aaff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 170, 255, 0);
}

.btn-primary:hover {
  background: #00bbff;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
  transform: translateY(-2px);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #fff;
}

.feature {
  width: 280px;
  background: #f1f4f8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0a0f1c;
  color: white;
  font-size: 0.9em;
}

.hero-secondary {
  background: linear-gradient(160deg, #001a2f 0%, #003355 100%);
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.content {
  width: 90%;
  max-width: 900px;
  margin: 60px auto;
  line-height: 1.6;
}

.content h2 {
  color: #003355;
  text-align: center;
  margin-bottom: 20px;
}

.benefits {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.benefits th, .benefits td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.benefits th {
  background-color: #e6f2f9;
  font-weight: 600;
}

.active {
  color: #00aaff;
  font-weight: 600;
}

.content ul {
  margin: 10px 0 20px 30px;
  line-height: 1.6;
}

.feature h3 {
  font-size: 1.1em;
}

.feature p {
  font-size: 0.95em;
  color: #333;
}

.features .feature {
  width: 280px;
  min-height: 200px;
}

.content ul li {
  margin: 6px 0;
  list-style-type: "– ";
  padding-left: 6px;
}

.founder .profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  object-fit: cover;
  border: 3px solid #00aaff;
}

.content ul {
  margin: 10px 0 20px 30px;
  line-height: 1.6;
}

.content ul li {
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 30px auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 4px rgba(0, 170, 255, 0.3);
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-links li {
  margin: 8px 0;
  font-size: 1em;
}

.contact-links a {
  color: #0077cc;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.navbar {
  background: #0a0f1c;
  color: white;
  padding: 10px 0;
}

.nav-logo {
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
}

.logo-text {
  color: #00aaff;
  font-weight: 700;
  font-size: 1.4em;
  vertical-align: middle;
}

.feature {
  width: 280px;
  background: #f1f4f8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.feature:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.2);
  border: 1px solid #00aaff;
}

