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

.header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem; background: #0a192f; color: #fff; padding: 5px 10px 0 0;
}
.logo img { width: 150px };
nav a { margin-left: 1rem; text-decoration: none !important; color: #909699 !important; }
nav a:hover { text-decoration: none !important; color: #64ffda !important; }
nav a:visited { text-decoration: none !important; color: #909699 !important; }

.hero {
  background: linear-gradient(rgba(10,25,47,0.8), rgba(10,25,47,0.8)), url('https://picsum.photos/1600/800') no-repeat center/cover;
  color: #909699; text-align: center; padding: 5rem 2rem;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 2rem; }
.btn-primary {
  background: #64ffda; padding: 0.75rem 1.5rem; border-radius: 5px;
  text-decoration: none; color: #0a192f; font-weight: bold;
}
.btn-primary:hover { background: #52e0c4; }

section { padding: 4rem 2rem; text-align: center; }
h2 { margin-bottom: 1rem; font-size: 2rem; }

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.card {
  background: #f4f4f4; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card:hover { background: #e6f7f5; }

.contact form { max-width: 500px; margin: auto; display: flex; flex-direction: column; gap: 1rem; }
.contact input, .contact textarea, .contact form select { padding: 0.75rem; border: 1px solid #ccc; border-radius: 5px; }
.contact button { background: #0a192f; color: #fff; border: none; padding: 1rem; cursor: pointer; }
.contact button:hover { background: #64ffda; color: #0a192f; }

.footer { background: #0a192f; color: #fff; padding: 1rem; text-align: center; margin-top: 2rem; }
.footer a.privacy, .footer a.privacy:visited { text-decoration: none !important; color: #fff; }
.footer a.privacy:hover { text-decoration: none !important; color: #64ffda; }
