/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(
    rgb(6, 6, 69),
    rgb(18, 18, 134),
    rgb(31, 31, 188)
  );
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0a192f;
  color: #ffffff;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: #0a192f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
}

.nav-links a.active {
  color: #64ffda;
}

/* Main Content */
.about-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

/* Mission Statement Section */
.mission-statement {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  text-align: center;
}

.globe-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-statement h2 {
  color: #64ffda;
  margin-bottom: 1rem;
}

.mission-statement p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Features Grid */
.offerings h2 {
  text-align: center;
  color: #64ffda;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: #64ffda;
  margin-bottom: 1rem;
}

.feature-card ul {
  list-style-type: none;
}

.feature-card li {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .about-container {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.center-card {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    grid-column: auto;
    max-width: none;
  }
}
