body, html {
  height: 80%;
  margin: 0;
  font: 400 15px/1.4 "Lato", sans-serif;
  color: #777;
  background-color: black;
  scroll-behavior: smooth;
}

ul li {
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: left;
}

.bgimg-1, .bgimg-2 {
  position: relative;
  opacity: 0.65;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgimg-1 {
  background-image: url("tech_green.jpg");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("cat-computer.gif");
  min-height: 400px;
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
}

.caption span.border {
  background-color: #111;
  color: #fff;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 10px;
}

.header {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 50%;
}

h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font: 20px "Lato", sans-serif;
  color: #111;
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #4CAF50;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.cta-button:hover {
  background-color: transparent;
  color: #4CAF50;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-button.secondary:hover {
  background-color: white;
  color: #111;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .bgimg-1, .bgimg-2 {
    background-attachment: scroll;
  }

  .header {
    width: 90%;
  }

  .caption span.border {
    font-size: 18px;
    letter-spacing: 5px;
    padding: 12px;
  }
}

@media only screen and (max-width: 600px) {
  .header img {
    width: 80% !important;
    height: auto !important;
  }

  h1, h2 {
    font-size: 16px !important;
  }

  .caption span.border {
    font-size: 16px;
    letter-spacing: 3px;
  }

  ul li {
    text-align: left !important;
  }
}

/* Cookie Consent Banner Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(17, 17, 17, 0.98);
  border-top: 3px solid #4CAF50;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease-out;
}

.cookie-consent.show {
  display: block;
}

/* Mobile Cookie Consent Styles */
@media only screen and (max-width: 600px) {
  .cookie-consent {
    padding: 15px !important;
  }

  .cookie-content p {
    font-size: 14px !important;
  }

  .cookie-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .cookie-btn {
    width: 100% !important;
    max-width: 300px !important;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: #ddd;
  margin: 0;
  font-size: 16px;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn.accept {
  background-color: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.cookie-btn.accept:hover {
  background-color: transparent;
  color: #4CAF50;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.cookie-btn.decline {
  background-color: transparent;
  color: #777;
  border-color: #777;
}

.cookie-btn.decline:hover {
  background-color: #777;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(119, 119, 119, 0.3);
}
