body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f1f4f6;
  margin: 0;
  padding: 0;
}
.header {
  background: linear-gradient(135deg, #008060, #00a67e);
  color: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}
.company-info {
  background-color: white;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}
.company-info h2 {
  color: #008060;
  margin-bottom: 10px;
}
.company-info p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}
.drawer {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100%;
  background-color: #008060;
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}
.drawer a {
  display: block;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.drawer a:hover {
  background-color: #00a67e;
}
.drawer.open {
  left: 0;
}
.menu-icon {
  font-size: 26px;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  background-color: rgba(0,0,0,0.2);
  border-bottom-right-radius: 10px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 900;
  display: none;
}
.overlay.show {
  display: block;
}
.footer {
  background: linear-gradient(135deg, #008060, #00a67e);
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: none;
  margin-top: 60px;
}
.footer p {
  margin: 5px 0;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
  z-index: 1;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}
.card h3 {
  margin: 10px 0 5px;
  color: #222;
}
.card p {
  font-size: 14px;
  color: #555;
}
.card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ff9800;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
