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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.blur {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.1);
}

header {
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.5s, color 0.5s;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li {
  display: inline;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0 15px;
  transition: background-color 0.5s, color 0.5s;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.hero {
  background: #0a0f1d;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 1rem;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  margin-right: 5%;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .hero .container {
    margin-right: 0;
    text-align: center;
  }
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.earth-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .earth-placeholder {
    width: 150px;
    height: 150px;
    font-size: 1rem;
  }
}

.section {
  padding: 80px 0;
  min-height: 100vh;
}
.section:nth-child(even) {
  background: #0a0f1d;
  color: white;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.btn {
  background: #667eea;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn:hover {
  background: #5a6fd8;
}

footer {
  background: #0a0f1d;
  color: white;
  text-align: center;
  padding: 40px 0;
}
footer p {
  margin-bottom: 1rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}/*# sourceMappingURL=style.css.map */