* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #2c3e50;
}

.menu ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #2980b9;
}

.btn-nav {
  background: #2980b9;
  color: white !important;
  padding: 8px 18px;
  border-radius: 5px;
}

.hero {
  background: white;
  padding: 60px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  border-radius: 0 0 10px 10px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.hero-img {
  flex: 1;
  text-align: right;
}

.hero-img img {
  max-width: 100%;
  border-radius: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.card h4 {
  font-size: 0.95rem;
  color: #7f8c8d;
  margin-bottom: 15px;
  font-weight: normal;
}

.tag {
  background: #e3f2fd;
  color: #1565c0;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
}

.salary {
  font-weight: bold;
  color: #27ae60;
  font-size: 1.1rem;
}

.btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #2c3e50;
  color: #2c3e50;
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #2c3e50;
  color: white;
}

.info-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.step-card {
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.2s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.bg-blue {
  background-color: #eef5ff;
}

.bg-purple {
  background-color: #fcf4ff;
}

.bg-green {
  background-color: #f0fdf4;
}

.step-badge {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: white;
  color: #2980b9;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.step-card h3 {
  color: #2980b9;
  margin-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 12px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.form-wrap {
  max-width: 500px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #2980b9;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th,
td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.main-footer {
  background: white;
  padding-top: 60px;
  margin-top: auto;
  border-top: 1px solid #eaeaea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #666;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #2980b9;
}

.footer-bottom {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 25px 0;
  color: #888;
  font-size: 0.9rem;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content {
  line-height: 1.8;
  color: #444;
}

.policy-content h3 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.contact-success {
  color: green;
  text-align: center;
  margin-bottom: 15px;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: #666;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.contact-info {
  text-align: center;
  margin-top: 30px;
  color: #666;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .menu.active {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    flex-direction: column-reverse;
    padding: 30px 10px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}