/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Header */
header {
  background: #1a1a2e;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #00adb5;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&q=80&w=1600&fit=crop") 
              center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  background: #00adb5;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #007b83;
}

/* Sections */
section {
  padding: 3rem 0;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1100px;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #9595a0;
}

.about p {
  text-align: center;
  font-size: 1.1rem;
}

/* Products */
.products .product-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.products h3 {
  margin-bottom: 1rem;
  color: #00adb5;
}

/* Contact */
.contact p {
  text-align: center;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #1a1a2e;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  margin-top: 2rem;
}
