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

body,
html {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #181618;
  scroll-behavior: smooth;
}

h1 {
  font-size: 3rem; /* Equivalent to 48px */
  font-weight: bold;
  line-height: 1.2;
  color: #f8881b; /* Accent color for main headers */
  margin-bottom: 10px;
}

h2 {
  font-size: 2.5rem; /* Equivalent to 40px */
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff; /* Use white or light gray on dark background */
  margin-bottom: 10px;
}

h3 {
  font-size: 2rem; /* Equivalent to 32px */
  font-weight: bold;
  line-height: 1.4;
  color: #d3d3d3; /* Light gray for a softer appearance */
  margin-bottom: 10px;
}

h4 {
  font-size: 1.75rem; /* Equivalent to 28px */
  font-weight: normal;
  line-height: 1.4;
  color: #b0b0b0; /* Softer gray for less prominent headings */
  margin-bottom: 10px;
}

h5 {
  font-size: 1.5rem; /* Equivalent to 24px */
  font-weight: normal;
  line-height: 1.5;
  color: #f0f0f0; /* Off-white for small headings */
  margin-bottom: 10px;
}

h6 {
  font-size: 1.25rem; /* Equivalent to 20px */
  font-weight: normal;
  line-height: 1.5;
  color: #b0b0b0; /* Same soft gray for consistency */
  margin-bottom: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20%;
  background-color: #222121;
  color: #f8881b;
  font-family: "Manrope", sans-serif;
  padding: 20px;
}

.bg1 {
  width: 100%;
  background-color: #e8b582;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(248, 136, 27, 0.5);
  padding: 50px;
}

.bg1 h3,
.bg1 h4 {
  color: #181618;
}

.bg2 {
  width: 100%;
  text-align: center;
  background-color: #f8881b;
  color: #222121;
  box-shadow: 0 4px 6px rgba(248, 136, 27, 0.5);
  padding: 50px;
}

.bg3 {
  width: 100%;
  text-align: center;
  background-color: #ffcc80;
  color: #222121;
  box-shadow: 0 4px 6px rgba(248, 136, 27, 0.5);
  padding: 50px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo h1 {
  display: inline-block;
  padding-left: 20px;
}

.logo img {
  max-width: 150px;
}

.menu {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  display: flex;
  gap: 20px;
  background-color: #1d1d1d;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu a {
  color: #eaeaea;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-transform: uppercase;
  line-height: initial;

  &::before {
    content: attr(data-item);
    transition: 0.5s;
    color: #f8881b;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    overflow: hidden;
  }

  &:hover {
    &::before {
      width: 100%;
      transition: all 0.5s ease-in-out;
    }
  }
}

ol,
ul {
  list-style-position: inside;
}

.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: #1d1d1d;
  color: #eaeaea;
}

.content-padded {
  padding: 40px;
  width: 100%;
  /* 1024 + 80px left/right padding */
  max-width: 1104px;
}

.content .logos {
  background-color: #eaeaea;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5%;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
  color: #222121;
}

.content .logos .logo-item {
  padding: 10px;
  width: auto;
}

.content .logos .logo-item p {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

.content .logos .logo-item img {
  max-height: 75px;
  width: auto;
}

.invert-svg {
  filter: invert(100%);
}

.footer {
  text-align: center;
  background-color: #f8881b;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #222121;
  box-shadow: 0 -4px 20px rgba(248, 136, 27, 0.5);
  padding: 30px 0;
}

.footer span {
  display: inline-block;
  vertical-align: super;
}

.scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1d1d1d;
  color: white;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  padding: 6px;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 1000;
}

.scrollToTop:hover {
  background-color: #eaeaea;
  border: 1px solid #1d1d1d;
}

@media (max-width: 768px) {
  h2 {
    text-align: center;
  }

  header {
    gap: 10%;
    flex-direction: column;
  }

  .menu {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .menu a {
    margin: 5px 0;
  }

  .content .logos .logo-item {
    padding: 20px 0;
    width: 100%;
  }
}
