/* Reset some basic elements */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Basic body styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
  margin-top: 80px; /* Add margin to body to account for fixed header height */
}

/* Container for centering content */
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.8); /* Glassmorphism background color */
  backdrop-filter: blur(10px); /* Glassmorphism blur effect */
  color: #333;
  padding: 10px 0; /* Reduced padding */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glass effect */
  position: fixed; /* Make header fixed at the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; /* Ensure header is on top of other content */
}

header a {
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

header li {
  display: inline;
  padding: 0 20px 0 20px;
}

/* Hero Section */
#hero {
  background: #eee;
  padding: 50px 0;
  color: #333;
}

#hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Boxes Section */
#boxes {
  margin-top: 20px;
}

#boxes .box {
  float: left;
  width: 30%;
  padding: 10px;
  text-align: center;
}

#boxes .box img {
  width: 90px;
}

/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

/* Responsive Design */
@media(max-width: 768px) {
  header {
    padding-bottom: 0px; /* Adjust padding for mobile */
  }

  header #branding,
  header nav {
    float: none;
    text-align: center;
    width: 100%;
  }

  header .container h1 {
    margin-bottom: 10px;
  }

  #boxes .box {
    width: 100%;
    float: none;
  }
}