/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header */
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fc9012;
    color: white;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }

/* Hero Section */
.about-hero {
    background-image: url('assets/map.jpg');
    background-size: cover;
    background-position: center;
    background-color: #C0C0C0;
    color: black;
    text-align: center;
    padding: 150px 10px;
}

.about-hero h1 {
    font-size: 3rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
}

/* About Content */
.about-content {
    padding: 50px 20px;
    color: black;
    text-align: center;
    background-color: #fc9012;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.mission {
    margin-bottom: 50px;
}

/* Certifications */
.certifications {
    margin-bottom: 50px;
}

.certificationlist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    justify-items: stretch;
}

.certification-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-10px);
}

.certification-card img {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Team Section */
.team {
    margin-bottom: 50px;
}

.team h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.team-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    color: #0073e6;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }
  
  footer .social-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .features-grid {
      flex-direction: column;
    }
  
    header {
      flex-direction: column;
      text-align: center;
    }
  }
  