body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container { max-width: 900px; margin: auto; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1);}
h1 { text-align: center; color: #333; }
p.description { text-align: center; color: #555; font-size: 1.2em; margin-bottom: 40px; }
.employee img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.employee h2 { margin: 10px 0 5px 0; font-size: 1.1em; color: #222; }
.employee p { color: #666; font-size: 0.98em; }
.employees {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 2rem;
}
.employee {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
padding: 1.5rem;
text-align: center;
}
.employee img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.employees {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.employee {
    text-align: center;
}
.employee img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 1rem;
}
@media (max-width: 900px) {
.employees {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.employees {
    grid-template-columns: 1fr;
}
}

.products-container { display: flex; flex-wrap: wrap; gap: 2rem; }
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    width: 400px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.product-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 0.5rem; }
.product-desc { font-size: 1rem; color: #555; }

.missionStatement {
  background-color: #001f3f; /* Dark blue background */
  color: #fff; /* White text */
  padding: 20px;
  text-align: center;
  font-size: 1em;
}
header {
  color: #fff;
  padding: 1rem 0;
}

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

header h1 {
  margin: 0 0 0 5px; /* Move the title closer to the left edge */
  text-align: left;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.home {
  padding-left: 15%;
  padding-right: 15%;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.company-slogan {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.mission {
  padding-left: 15%;
  padding-right: 15%;
  background-color: #000;
  color: white;
  font-size: 30px;
  text-align: center;
  height: 100vh;
}

.rocketImage {
  background-image: url('/images/rocket.jpeg');
  background-size: cover;
  background-position: center;
  height: 589px; /* Set a fixed height to ensure the image is visible */
  width: 100%;
}

header nav ul li {
  margin-left: 1rem;
}

header nav ul li a {
  color: #000;
  text-decoration: none;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #fff; /* Light blue for hover effect */
}

section {
  padding: 50px 0;
  text-align: center;
  margin-bottom: 2rem;
}

section h2 {
  color: #66b2ff; /* Light blue for section headers */
}

h2 {
  color: #333;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

footer form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

footer form label {
  margin: 10px 0 5px;
}

footer form input,
footer form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #66b2ff;
  border-radius: 5px;
  background-color: #001f3f;
  color: #ffffff;
}

footer form button {
  background-color: #66b2ff;
  color: #001f3f;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

footer form button:hover {
  background-color: #3399ff; /* Brighter blue on hover */
}
