/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

a {
  text-decoration: none;
  color: #005b5b;
}

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

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.logo img {
  max-height: 50px;
}

ul.nav-links {
  gap: 4rem;
}

nav ul li {
  font-size: 16px;
}

a.buy-now {
  padding: 1rem 2rem;
  background-color: #005b5b;
  color: #fff !important;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  text-align: center;
}

nav {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  border-radius: .4rem;
  padding: 1rem;
  cursor: pointer;
  background-color: #005b5b;
  fill: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #005b5b;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links li {
    text-align: center;
    margin: 0.5rem 0;
  }

  .nav-links.active {
    display: flex;
    gap: 0;
    top: 4.2rem;
    left: -8.4rem;
    z-index: 1;
    width: 10rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: .4rem;
  }

  .buy-now-item {
    margin-top: 1rem;
  }

  .buy-now {
    padding: 1rem 2rem;
    background-color: #005b5b;
    color: #fff;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    font-weight: bold;
  }
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 65vh;
  background: url('/img/background-desktop.svg') no-repeat center;
  background-size: cover;
  color: rgb(0, 0, 0);
}

.hero-content {
  display: flex;
  max-width: 600px;
  margin-right: 40px;
  text-align: left;
}

.hero-content a {
  text-align: left;
}

.text-content h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #005b5b;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #005b5b;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 0.4rem;
}

.strips {
  display: flex;
  width: 100%;
}

.strip {
  flex-grow: 1;
  background: #005b5b;
  padding: 1rem;
  text-align: center;
}

.strip:nth-child(1) {
  background: #005b5b;
}

.strip:nth-child(2) {
  background: #598890;
}

.strip:nth-child(3) {
  background: #8bb0b7;
}

.strip:nth-child(4) {
  background: #b6e2e9;
}

.strip:nth-child(5) {
  background: #d4f3f8;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.star {
  margin: .1rem;
  padding: .5rem;
  fill: #005b5b;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

footer p {
  font-size: 14px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    height: 80vh;
    justify-content: center;
    background: url('/img/background-tab.svg') no-repeat center;
  }

  .hero-content {
    margin: 20px auto;
    max-width: 80%;
  }

  .text-content {
    margin-top: 10rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: .8rem;
  }

  .text-content h1 {
    color: #005b5b;
    font-size: 2rem;
  }

  .text-content p {
    display: none;
    font-size: 16px;
  }

  .text-content a {
    display: flex;
    justify-content: center;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 0.5rem;
  }

  .hero {
    height: 70vh;
    justify-content: center;
    background: url('/img/background-mobile.svg') no-repeat center;
  }

  .hero-content {
    text-align: center;
    margin: 10px;
  }

  .text-content h1 {
    font-size: 1.4rem;
  }

  .text-content p {
    font-size: 14px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}

/* Get Started */

.selection {
  width: 100%;
  display: flex;
  margin: 6rem 0;
}

a svg {
  width: 8rem;
  height: 8rem;
}

.selection-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.selection-button a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: .8rem;
  background: #c4e6ec;
}

.selection-button a {
  cursor: pointer;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1), 0px -8px 12px rgba(0, 0, 0, 0.1),
    8px 0px 12px rgba(0, 0, 0, 0.1), -8px 0px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.selection-button a:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2), 0px -8px 12px rgba(0, 0, 0, 0.2),
    8px 0px 12px rgba(0, 0, 0, 0.2), -8px 0px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.selection-button a:active {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2), 0px -8px 12px rgba(0, 0, 0, 0.2),
    8px 0px 12px rgba(0, 0, 0, 0.2), -8px 0px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}

.selection-button p {
  color: #233c4b;
  margin: 0;
  font-weight: 800;
  font-size: 1.4rem;
}

@media (max-width: 768px) {}

@media (max-width: 480px) {
  .selection-button {
    display: flex;
    flex-direction: column;
  }

}