* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
}

/* Header */
header {
  background: white;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header img {
  height: 100px;
  width: auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #2F6BFF 0%, #0066FF 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #e8e8e8;
}

.btn {
  background-color: #FFD54F;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #FFC107;
}

/* Section Common */
.section {
  text-align: center;
  padding: 80px 20px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.section ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: left;
  color: #444;
}

.section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.section ul li::before {
  content: "✔";
  color: #0066FF;
  position: absolute;
  left: 0;
}

/* Candidate Section */
.candidate {
  background-color: #f9f9f9;
}

/* Recruiter Section */
.recruiter {
  background-color: #EAF1FF;
}

/* Footer */
footer {
  background-color: #0066FF;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer img {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
  
  
}

footer a {
  color: #FFD54F;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .section h2 {
    font-size: 1.6rem;
  }
  .section ul {
    font-size: 1rem;
  }
}

