* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  border-bottom: 1px solid #ddd;
}

header img {
    display: inline-block;
    margin: 0;
    width: 30%;        /* takes up 40% of the screen width */
    max-width: 200px;  /* but never larger than 300px */
    height: auto;      /* keeps the aspect ratio */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #007a5e;
}

/* Section styling */
section {
  padding: 1rem 5%;
  max-width: 1000px;
  margin: auto;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
  color: #007a5e;
  /* Deep green for sustainability theme */
}

p {
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 5%;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.9rem;
}

footer img {
    display: inline-block;
    margin: 0;
    width: 30%;        /* takes up 40% of the screen width */
    max-width: 200px;  /* but never larger than 300px */
    height: auto;      /* keeps the aspect ratio */
}

footer div {
  max-width: 1000px;
}

.note {
    font-size: 0.9em;
    opacity: 0.5;
    font-style: italic;
  }

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

form label {
  font-weight: bold;
}

form input,
form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  background: #007a5e;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background: #005f47;
}

fieldset {
  border: none;
  /* remove default box */
  margin: 0 0 0 0;
  /* add spacing below */
  padding: 0;
  /* reset default padding */
}

legend {
  font-weight: 600;
  /* make legend stand out */
  margin-bottom: 0.5em;
  /* space between legend and options */
  font-size: 1rem;
  /* same size as body text */
  color: #333;
  /* darker text for readability */
}

fieldset label {
  margin-left: 0.25em;
  /* space between radio and label */
}

/* Style placeholder text */
::placeholder {
  opacity: 0.5;
  /* 50% opacity */
  font-style: italic;
  /* italics */
}

.error {
  color: red;
  font-size: 0.9em;
  display: block;
  margin-top: 4px;
}

  .logo {
  display: block;
  margin: auto;
  width: 20%;        /* takes up 40% of the screen width */
  max-width: 150px;  /* but never larger than 300px */
  height: auto;      /* keeps the aspect ratio */
  }

<img src="logo.jpg" alt="Company Logo" class="logo">

div {
        width: 400px;
        height: 400px;
}

.parallax {
  min-height: 150px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: auto;
}

.parallax-wrapper {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.parallax-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateY(-20%);
  position: relative;
}

.parallax-band {
  position: relative;
  min-height: 300px;                 /* adjust height */
  background-attachment: fixed;      /* parallax effect */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: auto
  overflow: hidden;
}

.split-section {
  padding: 40px 5% 20px 5%;
}

.section-heading {
  text-align: left;      /* center heading across both columns */
  margin-bottom: 30px;     /* space between heading and row */
}

.content-row {
  display: flex;
  align-items: flex-start; /* aligns top of text with top of image */
  gap: 40px;               /* space between text and image */
}

.content-row .text {
  flex: 1;                 /* left side */
}

.content-row .image {
  flex: 1;                 /* right side */
}

.content-row img {
  width: 100%;
  height: auto;
  border-radius: 10px;     /* optional styling */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .content-row {
    flex-direction: column;
    text-align: center;
  }
}

.content-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.content-row img:hover {
  transform: scale(1.05);
}

/* Lightbox hidden by default */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Show the image in the middle */
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  border-radius: 8px;
}

.lightbox-hitarea {
  position: absolute;
  inset: 0;                          /* top:0; right:0; bottom:0; left:0 */
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

/* Close button */
#close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;

