/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #282c34;
  color: white;
}

.logo h1 {
  font-size: 32px;
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #61dafb;
}

/* Hero Section Styles */
.hero {
  background: url('hero-image.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 600px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 12px 30px;
  background-color: #61dafb;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 30px;
}

.cta-btn:hover {
  background-color: #21a1f1;
}

/* Product Section Styles */
.product-section {
  padding: 40px 20px;
  text-align: center;
}

.product-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 22px;
  margin: 15px 0;
}

.product-card p {
  font-size: 18px;
  color: #61dafb;
}

.product-card button {
  padding: 10px 20px;
  background-color: #61dafb;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #21a1f1;
}

/* Footer Styles */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #282c34;
  color: white;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 36px;
  }

  .cta-btn {
    font-size: 16px;
  }
}
