/* General styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
header {
  background: #f8f8f8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header img {
  height: 80px;
}

nav a {
  color: #333;
  margin: 0 10px;
  padding: 10px;
}

nav a:hover {
  background: #eee;
  border-radius: 5px;
}

/* Hero section */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

/* Section styles */
.section {
  padding: 60px 20px;
}

.section-light {
  background: #f9f9f9;
}

.section-dark {
  background: #eee;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section p, .section ul {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  background: #fff;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section img {
  max-width: 100%;
  border-radius: 10px;
}

/* Product styles */
.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
}

.product-description {
  text-align: left;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f7fafc;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-description h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.product-description ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

/* Footer styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #ddd;
}

/* Custom styles */
.text-brand-primary { color: #000; }
.bg-brand-primary { background-color: #000; }
.text-brand-secondary { color: #a6c9a9; }
.bg-brand-secondary { background-color: #a6c9a9; }
.text-brand-accent { color: #fff; }
.bg-brand-accent { background-color: #fff; }
.animate-fade-in { animation: fadeIn 2s ease-in-out; }
.hover-bump-out:hover { transform: scale(1.05); transition: transform 0.3s ease-in-out; }
.scroll-smooth { scroll-behavior: smooth; }
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.text-shadow { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); }
.object-fit-cover { object-fit: cover; }
.section-theme-light { background-color: #f7fafc; }
.section-theme-dark { background-color: #edf2f7; }
