:root {
  --primary-bg-color: #3498db; /* Blue background for header, footer, casino-item and form */
  --secondary-bg-color: #f8f8f8; /* Light background for body and other elements */
  --accent-color: #20b2aa; /* Accent color (slightly darker teal for contrast) */
  --text-color-primary: #333333; /* Dark text for elements that were white */
  --text-color-secondary: #555555; /* Slightly lighter dark text for elements that were light grey */
  --text-color-light-grey: #777777; /* Even lighter dark text */
  --border-color: #2980b9; /* Darker blue for borders */
  --text-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  margin: 0 auto;
  font-family: "Manuale", serif;
  font-optical-sizing: auto;
  background-color: var(--secondary-bg-color); /* Using secondary background color */
  color: var(--text-color-primary); /* Default text color for body */
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

button {
  font-family: inherit;
  border: 0;
  text-align: center;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text-color-primary); /* Ensuring headings are dark */
}

p {
  margin: 0;
  color: var(--text-color-secondary); /* Default paragraph color */
}

a {
  text-decoration: none;
  color: var(--accent-color); /* Links will use accent color */
}

.content-container {
  max-width: 1220px;
  padding: 20px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reset margins and paddings */
* {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
li,
button {
  margin: 0;
  font-family: "Roboto", sans-serif;
  padding: 0;
}

a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 768px) {
  .content-container {
    width: 100%;
    padding: 0 20px;
  }
}

/* Font faces */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.ttf");
  font-weight: 300;
}

.mainHeader {
  width: 100%;
  padding: 10px 0;
  height: 93px;
  color: var(--text-color-primary);
  border-bottom: 2px solid var(--border-color); /* Updated border color */
  background-color: var(--primary-bg-color); /* Using primary background color */
}

.header {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktopHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.desktopLogoContainer {
  height: 100%;
  width: 260px;
}

.desktopLogoContainer a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.desktopLogoContainer a img {
  width: auto;
  height: 100%;
  width: 100px;
}

.desktopMenuContainer {
  display: flex;
  align-items: center;
  width: auto;
  gap: 45px;
}

.headerLink {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--text-color-primary); /* Ensure header links are dark */
}

.headerLink:hover {
  text-decoration: underline;
}

.buttonForGetStart {
  width: max-content;
  background-color: var(--accent-color);
  padding: 14px 40px;
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--text-white); /* Text on buttons should be dark for contrast */
  font-size: 18px;
  text-wrap: nowrap;
  font-weight: 700;
  line-height: 21.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  cursor: pointer;
}

.mobileHeader {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.mobileLogoContainer {
  height: 100%;
  width: 200px;
}

.mobileLogoContainer a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mobileLogoContainer a img {
  width: 100px;
  height: auto;
}

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

.mobileMenuContainer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-bg-color); /* Using primary background color */
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px;
  transition: right 0.5s ease;
  z-index: 1000;
}
.mobileMenuContainer.open {
  right: 0;
}
.mobileMenuClose {
  width: auto;
  height: 24px;
  display: flex;
  justify-content: flex-end;
}

.mobileNav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
  width: 100%;
  align-items: center;
}

.mobileNav a {
  width: 100%;
  background: none;
  text-align: center;
  text-decoration: none;
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--text-white); /* Text color for mobile menu */
}

.text-info-item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-info-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-container {
    width: 100%;
    padding: 0 20px;
  }

  .mainHeader {
    width: 100%;
    padding: 10px 0;
  }

  .desktopHeader {
    display: none;
  }

  .mobileHeader {
    display: flex;
  }
}

.top-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 20;
}

.header_b {
  background: var(--primary-bg-color); /* Using primary background color */
  box-shadow: 0px 4px 53px 0px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-color);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_header {
  font-family: "Poppins", sans-serif;
  color: var(--text-color-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  max-width: 1220px;
  width: 100%;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.gradText {
  background: linear-gradient(260.52deg, #1c99fe -4.98%, #7644ff 48.42%, var(--accent-color) 96.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bodyHeaderTitle {
  font-family: "Poppins", sans-serif;
  color: var(--text-color-primary); /* Text color for title */
  font-size: 50px;
  font-weight: 700;
  line-height: 75px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 1100px;
}

.accentText {
  color: var(--accent-color);
}

.bodyHeaderDesc {
  color: var(--text-color-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.09px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 905px;
}

.bodyMainWrap {
  padding-top: 50px;
  background-color: var(--secondary-bg-color); /* Using secondary background color */
  background-image: none; /* Remove background image */
}
.bodyMainWrap::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: none; /* Remove overlay if no background image */
}

.bodyCont {
  padding: 86px 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offerMainWrap {
  max-width: 1220px;
  width: 100%;
}

.bodyHeaderDesc {
  color: var(--text-color-light-grey); /* Adjusted for light background */
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.09px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  width: 100%;
}

.bodyHeaderDesc_right {
  color: var(--text-color-light-grey);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.bodyHeader {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.bodyHeaderUtils {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 905px;
  width: 100%;
  flex-direction: row;
  gap: 20px;
}

.bodyHeaderUtilsItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.haederIcon {
  width: 20px;
}

.headerUtilsItemText {
  color: var(--text-color-secondary); /* Adjusted for light background */
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.headerUtilDate {
  color: var(--text-color-secondary);
  padding: 6px 10px;
  border-radius: 4px;
  border: var(--accent-color) 1px solid;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.offersHead {
  max-width: 1220px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  border: 1px solid;
  background-color: var(--primary-bg-color);
  border-radius: 8px;
  justify-content: space-between;
  border-image-source: none; /* Removed gradient border image source */
  border-color: var(--border-color); /* Ensured solid border with new color */
}

.oddersHeadText {
  color: var(--text-color-primary); /* Adjusted for dark text */
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
}

.footer_b {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 2px solid var(--border-color); /* Updated border color */
  justify-content: center;
  align-items: center;
  padding: 20px 0 105px 0;
  position: relative;
  z-index: 1000;
  background-color: var(--primary-bg-color); /* Using primary background color */
}

.footer_b .footer_b--img {
  max-width: 200px;
  width: 100%;
}

.footer_b .footer_b--img img {
  width: 100%;
}

.footerTitle {
  color: var(--text-white); /* Dark text for footer titles */
  font-size: 24px;
  max-width: 1220px;
  width: 100%;
  font-weight: 600;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.footerText {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerDesc {
  color: var(--text-white); /* Dark text for footer descriptions */
  font-size: 16px;
  font-weight: 400;
  max-width: 1220px;
  width: 100%;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.footerBottom {
  text-align: center;
  font-size: 18px;
  color: var(--text-white); /* Dark text for footer bottom */
}

.logosDiv {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  color: var(--text-color-primary); /* Dark text for logos div */
  font-size: 18px;
}

.logosDiv a {
  transition: all 0.3s ease;
  color: var(--text-white);
}

.logosDiv a:hover {
  transform: scale(1.1);
}

.logosDiv img {
  height: 50px;
  width: auto;
}

.casino-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: var(--primary-bg-color); /* Using primary background color */
  padding: 19px 0;
  border-radius: 8px;
  border: 2px solid var(--accent-color);
  position: relative;
}

.mobileLeft {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.mobileRight {
  width: 20%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.payments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  width: 224px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  box-sizing: border-box;
}

.buttonWrap {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  width: 242px;
}

.buttonWrappLink {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.buttonLink {
  background-color: var(--accent-color);
  padding: 14px 40px;
  border-radius: 8px;
  width: max-content;
  box-sizing: border-box;
  color: var(--text-white); /* Button text dark */
  font-size: 18px;
  text-wrap: nowrap;
  font-weight: 700;
  line-height: 21.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.visitLink {
  color: var(--text-white); /* Adjusted for light background */
  font-size: 14px;
  font-weight: 300;
  line-height: 16.8px;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.left {
}

.numberItem {
  padding: 10px 0;
  width: 5%;
  text-align: center;
}

.numberText {
  font-family: "Poppins", sans-serif;
  color: var(--text-white); /* Adjusted for light background */
  font-size: 32px;
  font-weight: 400;
  line-height: 38.4px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.offerLogoLink {
  background: var(--secondary-bg-color);
  border: 1px solid var(--text-white);
  padding: 10px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  border-radius: 8px;
}

.offerLogoLink img {
  width: 75%;
  max-height: 90%;
}

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.price-block {
  display: flex;
  flex-direction: column;
  width: 25%;
  gap: 4px;
  align-items: center;
}

.grey-title {
  color: var(--text-color-primary); /* Dark text */
  font-size: 16px;
  font-weight: 500;
  line-height: 16.8px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.bonusText {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 40.8px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.rating-wrapper {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 20%;
  align-items: center;
}

.ratingNumber {
  color: var(--text-white); /* Dark text */
  font-size: 26px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.votesText {
  color: var(--text-white); /* Adjusted for light background */
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.second {
  width: 221px;
}

.th {
  width: 184px;
}

.fr {
  width: 224px;
}

.fv {
  width: 209px;
}

.best {
  position: absolute;
  top: 15px;
  left: 70px;
  z-index: 10;
}

.best img {
  height: 21px;
}

.best-pick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: white; /* Keep white for gradient contrast */
  background: linear-gradient(90deg, var(--accent-color), #00bfff);
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.bodyHeaderDescWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1220px;
  width: 100%;
}

.price-block.hidden {
  display: none;
}

@media (max-width: 1250px) {
  .bodyMainWrap {
    background-position: center -10px;
    background-size: 100%;
  }

  /* .offerLogoLink .fatpirate {
    height: 81px;
  } */

  /* .casino-item {
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
  }

  .casino-item {
    width: 350px;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
  } */

  /* .price-block {
    display: none;
  }

  .price-block.hidden {
  } */

  .offersHead {
    display: none;
  }

  .bodyHeaderDescWrap {
    display: none;
  }

  /* .mobileLeft {
    flex-direction: column;
    padding: 15px 0;
    height: 150px;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    background: var(--primary-bg-color); 
    border-color: var(--border-color);
  } */

  /* .itemLine {
    display: none;
  } */

  /* .rating-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  } */

  /* .votesText {
    display: none;
  } */

  /* .numberItem {
    display: none;
  } */

  /* .ratingNumber {
    font-size: 17px;
    font-weight: 400;
    line-height: 14.4px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--text-color-primary); 
  } */

  /* .starsImg {
    width: 58px;
  } */

  /* .offerLogoLink {
    background: transparent;
    border: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 0;
  }

  .offerLogoLink img {
    height: 100%;
    max-width: 95px;
    object-fit: contain;
  } */

  /* .price-block.hidden {
    display: flex;
    width: 100%;
  } */

  /* .mobileRight {
    display: flex;
    flex-direction: column;
    background-color: var(--primary-bg-color);
    border-left: 1px solid var(--border-color);
    gap: 13px;
    height: 150px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 175px;
  } */

  /* .visitLink {
    display: none;
  } */

  /* .buttonWrap {
    padding: 0;
  } */

  /* .bonusText {
    font-size: 26px;
    font-weight: 600;
    line-height: 31.2px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--text-color-primary);
  } */

  /* .grey-title {
    font-size: 16px;
    padding-top: 6px;
    font-weight: 500;
    line-height: 14.4px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--text-color-primary); 
  } */

  /* .buttonLink {
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    text-align: center;
    padding: 10px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--text-color-primary);
  } */

  /* .price-block {
    gap: 0;
  } */

  /* .best {
    left: 10px;
    top: 10px;
  }

  .best img {
    height: 15px;
  }

  .best-pick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
    color: white; 
    background: linear-gradient(90deg, var(--accent-color), #00bfff);
    border: none;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  } */

  /* .payments {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .payments img {
    margin-top: 5px;
    height: 11px;
  } */

  /* .casino-item.first .mobileLeft {
    background: var(--primary-bg-color); 
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    width: 174px;
  }

  .casino-item.first {
    border: 0;
    padding: 1px;
    background: linear-gradient(260.52deg, #1c99fe -4.98%, #7644ff 48.42%, var(--accent-color) 96.9%);
  }

  .casino-item.first .mobileRight {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border: 0;
    background-color: var(--primary-bg-color); 
    width: 174px;
  } */

  /* .buttonLink {
    width: 135px;
    box-sizing: border-box;
  } */

  .footerTitle {
    max-width: 350px;
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .footerDesc {
    max-width: 350px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .logo_header {
    max-width: 350px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .bodyHeaderTitle {
    max-width: 350px;
    font-size: 25px;
    font-weight: 700;
    line-height: 37.5px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .bodyHeaderDesc {
    font-size: 15px;
    color: var(--text-color-secondary); /* Adjusted for light background */
    padding: 0 16px;
  }

  .bodyHeaderUtils {
    max-width: 350px;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
  }

  .headerUtilsItemText {
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .bodyHeaderUtilsItem {
    gap: 4px;
  }

  .headerUtilDate {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .top-container {
    gap: 20px;
  }

  .bodyCont {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .topBack {
  }

  .footer_b {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
  }

  .logosDiv img {
    height: 30px;
    width: auto;
  }

  .header_b {
    padding: 16px 0;
  }
  .mobileLeft {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    justify-items: center;
    gap: 20px;
  }
  .casino-item {
    flex-direction: column;
  }
  .numberItem {
    display: none;
  }
  .offerLogoLink {
    width: auto;
    min-width: 25%;
  }
  .itemLine {
    display: none;
  }
  .mobileRight {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .price-block,.payments {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .mobileLeft {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}

.text-info-section {
  max-width: 1220px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-color-secondary); /* Dark text */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.container .text-info-section {
  padding: 0;
  margin: 0;
}
.container .text-info-section h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.container {
  width: 100%;
  max-width: 1220px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
}

.text-info-section h2 {
  color: var(--text-color-primary); /* Dark text */
  font-size: 28px;
  font-weight: 600;
  margin-top: 30px;
}

.text-info-section h3 {
  color: var(--accent-color); /* Accent color for headings */
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
}

.text-info-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color-secondary); /* Dark text */
}

.text-info-section ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.text-info-section li {
  margin-bottom: 8px;
  color: var(--text-color-secondary); /* Dark text */
}

.text-info-section a {
  color: var(--accent-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .text-info-section {
    padding: 0 15px;
    font-size: 15px;
  }

  .text-info-section h2 {
    font-size: 22px;
  }

  .text-info-section h3 {
    font-size: 18px;
  }
}

.contact-section {
  max-width: 1220px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Reduced gap */
  align-items: center;
  color: var(--text-color-primary); /* Dark text */
  font-family: "Roboto", sans-serif;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.contact-subtitle {
  color: var(--text-color-secondary); /* Dark text */
  font-size: 18px;
  text-align: center;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  background-color: var(--primary-bg-color); /* Primary background for inputs */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-color-primary); /* Dark text for input values */
  font-family: inherit;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-color-light-grey); /* Darker placeholder text */
}

.contact-form .buttonLink {
  width: 100%;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background-color: var(--primary-bg-color); /* Primary background for modal */
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: var(--text-color-primary); /* Dark text for modal */
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }
}

.service-page {
  max-width: 1220px;
  margin: 80px auto;
  padding: 0 20px;
  color: var(--text-color-secondary); /* Dark text */
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-color-primary); /* Dark text */
  text-align: center;
}

.service-intro {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--text-color-secondary); /* Dark text */
}

.service-content h2 {
  color: var(--accent-color); /* Accent color for headings */
  font-size: 26px;
  font-weight: 600;
  margin-top: 40px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color-primary); /* Dark text */
  margin-top: 24px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color-secondary); /* Dark text */
}

.service-content ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.service-content li {
  margin-bottom: 10px;
  color: var(--text-color-secondary); /* Dark text */
}

.service-content a {
  color: var(--accent-color);
}

.logos-wrap {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.logos-wrap img {
  height: 40px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .service-title {
    font-size: 28px;
  }

  .service-intro {
    font-size: 16px;
  }

  .service-content h2 {
    font-size: 20px;
  }

  .service-content p,
  .service-content li {
    font-size: 15px;
  }

  .logos-wrap {
    justify-content: center;
  }

  .logos-wrap img {
    height: 30px;
  }
}

/* Registration form block styles */
.registration-form-block {
  background-color: var(--primary-bg-color); /* Primary background color */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  margin: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: var(--text-color-primary); /* Dark text for the block */
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.registration-form-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.registration-form-subtitle {
  font-size: 18px;
  color: var(--text-white); /* Dark text */
  margin-bottom: 20px;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-white); /* Dark text for labels */
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--secondary-bg-color); /* Secondary background for input fields */
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  color: var(--text-color-primary); /* Dark text for input values */
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-color-light-grey); /* Darker placeholder text */
}

.form-submit-button {
  width: 100%;
  padding: 15px;
  font-size: 20px;
  margin-top: 10px;
  color: var(--text-white); /* Dark text on button */
}

.error-message {
  color: red; /* Tomato red for error messages */
  font-size: 14px;
  margin-top: 5px;
  min-height: 20px; /* Ensure space for error message */
}

/* Contact Us Block Styles */
.contact-us-block {
  max-width: 1220px;
  width: 100%;
  background-color: var(--primary-bg-color); /* Using primary background color */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px; /* Space from the content above */
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--text-white); /* Dark text for readability */
}

.contact-us-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white); /* Accent color for the title */
  text-align: center;
  margin-bottom: 15px;
}

.contact-info-item {
  display: flex;
  flex-direction: column; /* Stack label and value on small screens */
  gap: 5px;
}

.contact-info-label {
  font-weight: 500;
  color: var(--text-white); /* Dark text for labels */
  font-size: 16px;
}

.contact-info-value {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-white); /* Dark text for values */
}

.contact-info-value a {
  color: var(--text-white); /* Accent color for links within contact info */
  text-decoration: underline;
}

@media (min-width: 769px) {
  .contact-info-item {
    flex-direction: row; /* Align label and value side-by-side on larger screens */
    align-items: baseline;
    gap: 10px;
  }
  .contact-info-label {
    flex-shrink: 0; /* Prevent label from shrinking */
    width: 150px; /* Fixed width for labels */
    text-align: right;
  }
  .contact-us-title {
    text-align: left; /* Align title to left on larger screens */
  }
}

@media (max-width: 768px) {
  .contact-us-block {
    padding: 20px;
    margin-top: 30px;
  }
  .registration-form-block {
    padding: 25px;
  }
  .registration-form-title {
    font-size: 26px;
  }
  .registration-form-subtitle {
    font-size: 16px;
  }
  .contact-us-title {
    font-size: 22px;
  }
  .contact-info-label,
  .contact-info-value {
    font-size: 14px;
  }
  .form-group label {
    font-size: 14px;
  }
  .form-group input {
    font-size: 14px;
    padding: 10px 12px;
  }
  .form-submit-button {
    font-size: 18px;
    padding: 12px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--primary-bg-color); /* Blue background */
  color: var(--text-color-primary); /* Dark text for primary elements */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 16px;
  color: var(--text-white); /* Dark text for banner content */
}

.cookie-banner a {
  color: var(--accent-color); /* Accent color for links */
  text-decoration: underline;
}

.cookie-banner .button-group {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  color: #fff;
}

.cookie-banner button:hover {
  background-color: #1a9288; /* Slightly darker accent color on hover */
}

.cookie-banner button.decline-btn {
  background-color: #e74c3c; /* A distinct color for decline, e.g., red */
  color: #fff;
}

.cookie-banner button.decline-btn:hover {
  background-color: #c0392b; /* Darker red on hover */
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
  }
}
