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

.header nav li a {
  color: #000;
}

.header button.login {
  color: #000;
  border-color: #000;
}

.header .user-name {
  color: #000;
}

.header .dropdown-arrow path {
  stroke: #000;
}
.header .dropdown-arrow {
  filter: brightness(0);
}
.navbar-button.login {
  border-color: #000;
}

.hero-section {
  padding-top: 170px;
}

.hero-container {
  max-width: 714px;
  margin: 0 auto;
  gap: 113px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 112%;
  text-align: center;
  text-transform: uppercase;
  color: #232323;
  margin-bottom: 0;
}

.hero-description {
  text-align: center;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #232323;
  margin-bottom: 0;
}

.content {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 32px 32px 32px;
  display: grid;
  grid-template-columns: 442px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
}

.sidebar {
  position: sticky;
  top: 120px;
  width: 100%;
  background: #fafafa;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar a.active {
  color: #D63B54;
}

.sidebar-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 0;
  color: #232323;
  text-transform: none;
  letter-spacing: normal;
}

.sidebar-title:hover {
  color: #D63B54;
  text-decoration: none;
}

.main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.main-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main-header-subtitle {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #a5a5a5;
}

.main-header-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  color: #232323;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
}

.main-options {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 524px;
}

.main-options-item {
  border: 1px solid #a5a5a5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  max-height: 67px;
}

.main-options-item p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #353535;
}

.main-options-item span {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 115%;
  color: #eb7e2a;
  padding: 8px;
  border-radius: 1000px;
  background: #fce5d6;
  text-align: center;
}

.main-features-header {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  max-width: 442px;
  width: 100%;
}

.main-features-header-subtitle {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #a5a5a5;
}

.main-features-header-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 60px;
  color: #232323;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
}

.main-features-description {
  display: none;
}

.main-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.main-features-item {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 360px;
}

.main-features-item-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.main-features-item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-features-item-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #232323;
}

.main-features-item-description {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #9c9c9c;
}

/* Mobile Responsive */

@media (max-width: 1100px) {
  .main-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    height: auto;
    padding-top: 60px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
  }

  .hero-container {
    height: auto;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    z-index: 1;
    text-align: left;
  }

  .hero-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
    text-align: left;
  }

  .hero-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .content {
    max-width: 100%;
    padding: 24px 16px 80px 16px;
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .main-header-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }

  .main-header-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
  }

  .main-features-header {
    margin-top: 48px;
  }

  .main-features-header-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }

  .main-features-description {
    display: inline;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #232323;
    margin-top: 24px;
  }

  .main-features-header-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
  }

  .main-features {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-features-item-icon {
    width: 48px;
    height: 48px;
  }

  .main-features-item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
  }

  .main-features-item-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }
}
