body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  color: #1A73E8;
}

a {
  text-decoration: none;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/satellite-bg.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #1A73E8;
  color: white;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #155ab6;
}

.btn-outline {
  background: transparent;
  border: 2px solid #1A73E8;
  color: #1A73E8;
}

.section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.founder {
  background: #f9f9f9;
  border-top: 2px solid #eee;
}

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

.founder-photo {
  width: 150px;
  border-radius: 50%;
  border: 3px solid #1A73E8;
}

.cta-section {
  text-align: center;
  background: #1A73E8;
  color: white;
  padding: 50px 20px;
}

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

.contact-form input, 
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.map-container {
  text-align: center;
  margin-top: 20px;
}

.map-container img {
  max-width: 100%;
  height: auto;
  border: 2px solid #1A73E8;
  border-radius: 8px;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}