body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

p,
strong {
  line-height: 1.8;
}

h2 {
  line-height: 1.5;
}

.header {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  background-color: #002833;
  padding: 10px 20px;
}

.logo {
  margin-right: 50px;
}

.header img {
  height: 50px;
  vertical-align: middle;
}

.header .site-name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-left: 10px;
  vertical-align: middle;
}

.header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.banner {
  background-image: url("images/banner1.png");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner h1 {
  font-size: 36px;
  margin: 0;
}

.banner .btn {
  background-color: #ff3300;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
}

.services,
.why-six-sigma,
.exam-simulator {
  padding: 40px 20px;
}

.services .section-title.center-align {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.services .content-box {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.services .box {
  background-color: #002833;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  color: #fff;
  text-align: left;
}

.services .box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.services .box ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.services .box ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.services .box ul li:before {
  content: "■";
  color: #ff3300;
  position: absolute;
  left: 0;
}

.services .box img {
  display: block;
  margin: 0 0 10px 0;
  max-width: 50px;
  height: auto;
}

.why-six-sigma,
.exam-simulator {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  margin: 20px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.why-six-sigma img,
.exam-simulator img {
  max-width: 40%;
  border-radius: 8px;
}

.why-six-sigma .content,
.exam-simulator .content {
  flex: 1;
  padding: 0 20px;
}

.why-six-sigma .section-title.left-align,
.exam-simulator .section-title.left-align {
  text-align: left;
}

.footer {
  background-color: #002833;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.contact-page {
  padding: 40px 20px;
  min-height: calc(100vh - 188px);
}

.contact-page h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-page textarea {
  height: 200px;
}

.contact-page button[type="submit"] {
  background-color: #002833;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-page button[type="submit"]:hover {
  background-color: #004050;
}

/* Responsive styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 1000;
}

.cookie-consent-banner p {
  margin: 0 0 10px 0;
}

.cookie-consent-banner button {
  background-color: #ff3300;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  margin: 0 5px;
}

.cookie-consent-banner button:hover {
  background-color: #ff5733;
}
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  z-index: 1000;
}

.cookie-consent-banner p {
  margin: 0 0 10px 0;
}

.cookie-consent-banner button {
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  margin: 0 5px;
}

#accept-all-cookies {
  background-color: #ff3300; /* Color for "Accept All Cookies" button */
}

#accept-essential-cookies {
  background-color: #0364A9; /* Color for "Accept Only Essential Cookies" button */
}

.cookie-consent-banner button:hover {
  background-color: #ff5733;
}

@media (max-width: 768px) {
  .header {
    padding: 6px 15px;
  }
  .header img {
    height: 40px;
  }

  .header .site-name {
    font-size: 16px;
    margin-left: 5px;
  }

  .header nav {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .header nav.active {
    display: flex;
    position: absolute;
    z-index: 1;
    top: 52px;
    left: 47%;
    transform: translateX(-47%);
    background-color: #002833eb;
    width: 100vw;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header nav a {
    padding-bottom: 10px;
    padding-left: 35px;
    border-bottom: 1px solid #fff;
    width: 100%;
  }

  .header nav a:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .menu-toggle {
    display: inline-block;
    position: absolute;
    right: 7px;
    top: 9px;
  }

  .services .content-box {
    flex-direction: column;
  }

  .why-six-sigma,
  .exam-simulator {
    flex-direction: column;
  }

  .why-six-sigma img,
  .exam-simulator img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .contact-page {
    min-height: calc(100vh - 170px);
  }
}
