* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: black;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

header h1 {
  font-size: 1.5rem;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.hero-section {
  margin-top: 100px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-banner {
  width: 100%;
  height: 300px;
  background: url('banner.png') no-repeat center center;
  background-size: cover;
}

.intro {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}

.carousel-preview {
  padding: 1rem 2rem 0;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 3rem 2rem 2rem;
  scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card {
  flex: 0 0 auto;
  width: 320px;
  height: 280px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  position: relative;
  scroll-snap-align: start;
  padding-top: 2.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card .icon {
  position: absolute;
  top: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card .image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.card .content {
  padding: 0.75rem;
  font-size: 0.9rem;
  text-align: left;
}

.card .content strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background: #eee;
}
