* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

/* HEADER */
.header {
  background: #3da0d9;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
.header-contact {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.95;
}

.header-contact a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.header-contact a:hover {
  text-decoration: underline;
}

.logo {
  max-width: 140px;
  margin-bottom: 10px;
}

.tagline {
  opacity: 0.9;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: white;
}

.hero h2 {
  margin-bottom: 10px;
}

.cta {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.primary {
  background: #3da0d9;
  color: white;
}

.secondary {
  background: #333;
  color: white;
}

/* PRODUCTS */
.products {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

.products h2 {
  text-align: center;
  margin-bottom: 40px;
}

.product {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

/* IMAGE FIX (THIS IS CRITICAL) */
.product img {
  width: 100%;
  max-width: 380px;
  height: auto;          /* prevents stretching */
  object-fit: contain;   /* keeps full product visible */
  background: #eee;
  padding: 10px;
  border-radius: 6px;
}

/* TEXT */
.product-text {
  flex: 1;
}

/* STACK ON MOBILE */
@media (max-width: 768px) {
  .product {
    flex-direction: column;
    text-align: center;
  }
}

/* ABOUT */
.about {
  background: white;
  padding: 50px 20px;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 40px 20px;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
.about ul {
  max-width: 900px;
  margin: 20px auto;
  text-align: left;
}

.about li {
  margin-bottom: 12px;
}
