*{
    margin: 0;
    padding: 0;
}

.navbar{
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    transition: 0.3s ease;
    z-index: 10;
    animation: show-content 0.2s linear forwards;
    animation-delay: 0.3s;
}
.text{
    margin-right: 160px;
}
.text a {
  font-family: Raleway;  
  position: relative; 
  margin-left: 50px;
  text-decoration: none;
  color: #FFC107;
  font-weight: bold;
  transition: color 0.2s ease;
  font-size: 20px;
}

.text a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; 
  width: 0;
  height: 1px;
  background-color: #5682B1;
  transition: width 0.2s ease;
}

.text a:hover::before {
  width: 100%;
}
.navbar:hover{
    background-color: rgb(0, 0, 0);
}

.help-section {
  background: linear-gradient(to bottom, #f0f4f8, #ffffff);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1e3d59;
  text-align: center;
}

.help-container {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 80px;
}

.help-container h2 {
  font-size: 32px; 
  color: #0a2342;
  margin-bottom: 15px;
}

.help-container .intro {
  font-size: 16px;  
  color: #333;
  margin-bottom: 40px;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.help-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.help-card h3 {
  font-size: 20px; 
  margin-bottom: 10px;
  color: #004080;
}

.help-card p {
  font-size: 15px; 
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.help-card a {
  display: inline-block;
  background: #1e3d59;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
}

.help-card a:hover {
  background: #004080;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .help-container h2 {
    font-size: 28px;
  }
  .help-card {
    padding: 20px;
  }
}