
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0056d2;
  padding: 15px 20px;
  color: white;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

.navbar-right a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.navbar-right .divider {
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background-color: #ff9900;
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #0056d2;
}

/* Features Section */
.features {
  padding: 50px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.feature-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.feature h3 {
  color: #0056d2;
  margin-bottom: 10px;
}

/* Job Section */
.jobs {
  padding: 50px 20px;
  background: #f1f5f9;
}

.jobs h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.job-list h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #333;
}

.job-card {
  background: white;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.job-card h3 {
  color: #0056d2;
}

.job-card p {
  margin: 5px 0;
}

.job-card a {
  display: inline-block;
  margin-top: 10px;
  background: #0056d2;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
}

.job-card a:hover {
  background: #003c99;
}

/* Call to Action */
.cta {
  padding: 50px 20px;
  text-align: center;
  background: #0056d2;
  color: white;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

.cta .btn-primary {
  background: #ff9900;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #003c99;
  color: white;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .feature-grid {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .navbar-right {
    margin-top: 10px;
  }
}
