* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #fff;
  color: #222;
}

nav {
    height: 50px;
}

nav h1 {
    margin-left: 2rem;
    margin-top: 10px;
    font-size: 26px;
    color: black;
}

nav a {
  text-decoration: none;
  color: white;
}

nav ul {
    position: absolute;
    right: 2rem;
    top: 0;
    list-style-type: none;
    color: white;
}

nav li {
    background: black;
    padding: 17.25px;
    cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* vertical alignment */
  justify-content: center; /* horizontal centering */
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #ffe3c3;
  height: calc(100vh - 50px);
}

.hero-content {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3a3023;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #5b4935;
}

.hero-image {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 85%;
  max-width: 375px;
  height: auto;
  border-radius: 10px;
  box-shadow: -2px 4px 13px #aaa;
}

.cta-button {
  display: inline-block;
  background-color: #7c6448;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1e40af;
}

/* Features */
.features {
  padding: 3rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #3a3023;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-item {
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #5b4935;
}

.feature-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.feature-item p {
  font-size: 1rem;
  margin: 0;
}

.cta-inline {
  display: inline-block;
  margin-top: 1rem;
  color: #7c6448;
  text-decoration: underline;
  font-weight: 500;
}

/* Pricing */
.pricing {
  background-color: #ffe3c3;
  padding: 3rem 2rem;
  text-align: center;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #3a3023;
}

.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.plan {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem;
  width: 280px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  color: #5b4935;
}

.featured {
  border: 2px solid #7c6448;
}

.plan h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.plan .price {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.plan ul {
  list-style: none;
  margin-bottom: 1rem;
}

.plan ul li {
  margin: 0.5rem 0;
}

/* Full Details */
.full-details {
  padding: 3rem 2rem;
  background-color: #fff;
  text-align: center;
}

.full-details h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  font-size: 1.1rem;
}

.details-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.details-list li:last-child {
  border-bottom: none;
}

/* Footer */
.footer {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 2rem 1rem;
}

.footer a.cta-footer {
  display: inline-block;
  margin-top: 1rem;
  color: #7c6448;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: center;
  }

  .hero-content, .hero-image {
    padding: 0;
  }

  .hero-content p {
    margin-bottom: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .cta-button {
    margin-top: 10px;
  }

  .hero-image {
    margin-top: 0;
  }

  .hero-image img {
    width: 36%
  }

  .plans {
    flex-direction: column;
    align-items: center;
  }

  .feature-grid {
    display: grid;
  }
}
