* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

h1, h2, h3 {
  text-align: center;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}
.site-header, .main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  color: white;
  background-color: #1a1a1a;
}

.site-header nav ul,
.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.site-header nav a,
.main-nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

footer, header {
  background-color: #1a1a1a;
  color: #ffffff;
}

footer a, header a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover, header a:hover {
  text-decoration: underline;
}

.main-footer {
  background-color: #f4f4f4;
  color: #333;
  padding: 40px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #002244;
  color: white;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #003366;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.contact-wrapper {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
}

.contact-wrapper h2,
.contact-wrapper p {
  margin-bottom: 24px;
}

.contact-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-wrapper input[type="text"],
.contact-wrapper input[type="email"],
.contact-wrapper textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-wrapper textarea {
  resize: vertical;
}

.contact-wrapper .cta-button {
  margin: 0 auto;
}
body.lighting-page .site-header {
  background-color: #333300;
}

body.lighting-page .cta-button {
  background-color: #ff6600;
}

body.lighting-page .cta-button:hover {
  background-color: #e65c00;
}
/* Outdoors Page Header */
body.outdoors-page .site-header {
  background-color: #1e2f1e;
}

/* Outdoors Buttons */
body.outdoors-page .cta-button {
  background-color: #339966;
}

body.outdoors-page .cta-button:hover {
  background-color: #2a8055;
}

/* Outdoors Product Cards */
body.outdoors-page .product-card {
  border: 1px solid #cce5cc;
  box-shadow: 0 4px 10px rgba(30, 47, 30, 0.1);
}

body.outdoors-page .product-card h4 {
  color: #1e2f1e;
}
/* Outdoors Page Header */
body.outdoors-page .site-header {
  background-color: #1e2f1e;
}

/* Outdoors Buttons */
body.outdoors-page .cta-button {
  background-color: #339966;
}

body.outdoors-page .cta-button:hover {
  background-color: #2a8055;
}

/* Outdoors Product Cards */
body.outdoors-page .product-card {
  border: 1px solid #cce5cc;
  box-shadow: 0 4px 10px rgba(30, 47, 30, 0.1);
}

body.outdoors-page .product-card h4 {
  color: #1e2f1e;
}