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

body {
  font-family: "Sora", sans-serif;
}

header {
  width: 100%;
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0px;
}

a {
  text-decoration: none;
  color: #3475c2;
}

.logo img {
  height: 25px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 18px;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  transition: color 0.3s;
}

.container {
  padding: 40px;
}

.become-interviewer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.become-interviewer i {
  font-size: 14px;
}

.buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 8px 18px;
  border: 1px solid black;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
}

.btn.signup {
  background-color: black;
  color: white;
  border: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  text-align: center;
  padding: 0 20px;
}

.title {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 12px;
  text-align: center;
}

.subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
}

.search-box {
  position: relative;
  width: 90%;
  max-width: 700px;
}

.search-box input {
  width: 95%;
  height: 60px;
  padding: 16px 20px 16px 50px;
  border: none;
  border-radius: 999px;
  background-color: #f1f1f1;
  font-size: 16px;
  outline: none;
}

.search-box input::placeholder {
  color: #a1a1a1;
}

.search-box::before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #888;
}

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

.card {
  width: 420px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 24px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #a1a1a1;
}

.badge {
  font-size: 15px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 6px;
  margin-right: 10px;
  color: white;
}

.badge.easy {
  background-color: #1d67bc;
}

.badge.medium {
  background-color: #f69d1d;
}

.badge.hard {
  background-color: #50ae55;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0px 15px 0px;
  color: #000;
}

.card p {
  font-size: 14.5px;
  color: #a1a1a1;
  line-height: 1.5;
}

.features {
  background-color: #f8f6f9;
  padding: 70px 100px;
}

.features-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  margin-right: 400px;
}

.feature-card {
  background-color: #fff;
  height: 240px;
  padding: 12.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
  position: relative;
}

.feature-card h3 {
  margin: 10px 0px;
}

.features-cards i {
  font-size: xx-large;
}

.features-cards .arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
}

.feature-card-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
}

.feature-card-small {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: 100px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.feature-card-small h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.feature-card-small .data {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonals {
  display: flex;
  margin: 50px 0px 200px 0px;
}

.testimonals img {
  height: 323px;
}

.testimonals a {
  font-weight: bold;
}

.testimonal {
  display: flex;
  flex-direction: column;
  align-self: center;
  padding: 35px;
}

.testimonal p {
  font-size: larger;
  color: #666666;
}

.testimonal-by {
  margin: 25px 0px;
}

.testimonal .message {
  padding: 0px 30px 0px 0px;
}

.products {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.products img {
  width: 320px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: #d3d3d3 0px 0px 5px 0px;
}

.product {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: #d3d3d3 0px 0px 10px 0px;
}

.product p {
  color: #a1a1a1;
  font-size: large;
}

.know-more {
  margin-top: 75px;
  text-align: left;
  text-decoration: none;
  color: #362de5;
  font-weight: bold;
}

.faqs-section {
  background-color: #f5e7e7;
  display: flex;
  padding: 80px 100px;
  margin: 0 auto;
  gap: 150px;
  align-items: flex-start;
}

.faqs-left {
  flex: 1;
  max-width: 350px;
}

.faqs-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 20px;
}

.faqs-left .description {
  font-size: 18px;
  line-height: 1.6;
  color: #717171;
  margin-bottom: 40px;
}

.contact-us {
  margin-top: 50px;
}

.contact-us p {
  font-size: 18px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 15px;
}

.talk-to-rep {
  display: inline-flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.talk-to-rep i {
  margin-right: 10px;
  color: #007bff;
}

.faqs-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 5px;
}

.faq-item {
  border-top: 2px solid #837c7c;
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 2px solid #837c7c;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #262626;
}

.faq-question i {
  font-size: 20px;
  color: #262626;
}

.footer {
  background-color: #2f3134;
  padding: 60px 80px;
  color: #fff8ee;
  font-size: 14px;
  line-height: 1.5;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 250px;
}

.footer-logo img {
  height: 24px;
  width: auto;
  fill: #fff8ee;
}

.social-links {
  display: flex;
  gap: 20px;
  font-size: 15px;
}

.social-links a {
  color: #fff8ee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hire-section p {
  font-size: 20px;
  font-weight: 500;
  color: #f8b400;
  margin-bottom: 20px;
}

.email-input-container {
  display: flex;
  border-bottom: 1px solid #717171;
  padding-bottom: 8px;
  align-items: center;
  width: 280px;
}

.email-input-container input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff8ee;
  font-size: 16px;
  flex-grow: 1;
  padding: 0;
}

.email-input-container input::placeholder {
  color: #717171;
}

.email-input-container button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-input-container button svg {
  fill: #fff8ee;
  width: 24px;
  height: 24px;
}

.footer-columns {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff8ee;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #b0b0b0;
  font-size: 15px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  font-size: 15px;
}

.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    width: 100%;
    justify-content: space-around;
    gap: 30px;
  }

  .footer-left {
    width: 100%;
  }

  .email-input-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 40px;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .buttons {
    flex-wrap: wrap;
  }

  .container {
    padding: 20px;
  }

  .card {
    width: 100%;
  }

  .features {
    padding: 60px 40px;
  }

  .features-cards {
    flex-direction: column;
    margin-right: 0;
  }

  .feature-card {
    height: auto;
  }

  .feature-card-group {
    flex-direction: column;
  }

  .testimonals {
    flex-direction: column;
    align-items: center;
    margin: 50px 0px 100px 0px;
  }

  .testimonals img {
    height: auto;
    width: 100%;
  }

  .testimonal {
    padding: 20px;
    text-align: center;
  }

  .testimonal .message {
    padding: 0;
  }

  .products {
    flex-direction: column;
  }

  .product {
    width: 100%;
  }

  .faqs-section {
    flex-direction: column;
    padding: 60px 40px;
    gap: 50px;
  }

  .faqs-left,
  .faqs-right {
    max-width: 100%;
  }

  .faqs-left h2 {
    font-size: 38px;
  }

  .faqs-left .description,
  .contact-us p,
  .talk-to-rep,
  .faq-question p {
    font-size: 16px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0 20px;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 16px;
  }

  .search-box::before {
    left: 20px;
  }

  .faqs-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .faqs-left .description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-us p,
  .talk-to-rep {
    font-size: 14px;
  }

  .faq-question p {
    font-size: 15px;
  }

  .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
