
.hero-section {
  background-color: var(--bg-light);
  padding: 20px 10px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-left: 5%;
}

.hero-text {
  flex: 1;
  padding-right: 5px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: 330px;
  border-radius: 12px;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
}

.hero-title {
  font-size: 42px;
  margin: 10px 0;
  color: #222;
}

.hero-features {
  list-style: none;
  margin-left: 15px;
  padding: 0;
}

.hero-features li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.hero-features img {
  width: 24px;
  height: 24px;
}

.hero-button {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  padding: 5px 10px;
  background-color: var(--btn-primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: var(--btn-primary-hover);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-item {
  background: white;
  padding: 18px 10px 0px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.feature-item h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
}

.feature-item:hover {
  background-color: #053545;
  color: white;
  transform: translateY(-2px);
}

.price-section {
    background-color: var(--yellow-smooth);
    padding: 15px 10px;
    text-align: center;
  }
  
  .price-slogan {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0px;
  }
  
  .price-slogan h3 {
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    color: #333;
  }
  
  .price-slogan span {
    display: flex;
    flex-direction: row;
  }
  
  /* Logo styling */
  .price-logo {
    width: 24px;
    height: auto;
  }
  

  @media screen and (max-width: 600px) {
    .hero-title{
      font-size: 1.50rem;
    }
    .hero-features li {
      font-size: 12px;
      margin: 0 0;
    }
    .hero-section {
      padding: 50px 10px;
    }
    .price-slogan  {
      flex-direction: column;
    }
    .hero-features {
    margin-left: 0;
    }
  }
  

.pack-section {
  padding: 40px 20px;
  background-color: var(--bg-light);
  text-align: center;
  font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

.pack-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 300;
}

.pack-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.pack-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.pack-card {
  position: relative;
  min-width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pack-card img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.pack-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-blue);
}

.pack-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  z-index: 2;
  text-align: left;
}

.pack-text h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.pack-text p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.05);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 3;
  border-radius: 4px;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: #000000cc;
}
