﻿:root {
  --main-color: #3e2f85;
  /*    --main-color-green: #72BC4C;*/
  --main-color-green: #5aba23;
  --main-color-dark-blue: #1d2b47;
  --main-color-blue: #37388b;
  --main-color-grey: #777f90;
  --main-color-white: #ffffff;
  --main-color-greyBG: #eaeaf3;
  --main-color-pink: #d83d97;
  --main-color-dark-pink: #d83d97;
  --main-color-pinkBG: #fbebf4;
  --main-color-yellow: #eda941;
  --main-color-dark-yellow: #ed9141;
  --font-awesome: "Font Awesome 7 Free";
  --main-width: 900px;
  --main-border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

footer {
  background-color: var(--main-color-dark-blue);
  position: absolute;
}

.footer-box {
  display: flex;
  gap: 30px;
  padding: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-logo img {
  max-width: 210px;
  height: auto;
}

.text-main-color,
a .text-main-color {
  color: var(--main-color);
}

.container {
  max-width: 2500px;
  width: 100%;
  margin: 60px auto;
}

.container-fluid {
  width: 100%;
}

.navbar .container {
  margin: 20px 0px;
}

.navbar-brand {
  margin-left: 40px;
}

.navbar-brand img {
  max-width: 210px;
  height: auto;
}

.navbar-toggler {
  display: none;
}

.header-bar {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
}

.nav-item {
  list-style: none;
}

.nav-item a {
  text-decoration: none;
}

.pink {
  color: var(--main-color-dark-pink);
}

.btn-box {
  display: flex;
  align-items: center;
  -webkit-justify-content: inherit;
  justify-content: inherit;
  border-radius: var(--main-border-radius);
  width: fit-content;
  height: 40px;
  padding: 0 10px;
  text-decoration: none;
  outline: none;
  border: 0;
  cursor: pointer;
}

.btn-box:active {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-green {
  background-color: var(--main-color-green);
  color: white;
}

.btn-white {
  background-color: #ffffff;
  color: var(--main-color);
}

.btn-yellow {
  background-color: var(--main-color-yellow);
  color: #ffffff;
}

.btn-yellow:hover {
  background-color: var(--main-color-dark-yellow);
  color: #ffffff;
}

.btn-bold {
  font-weight: 500;
  font-size: 1.25rem;
}

.btn-pink {
  background-color: var(--main-color-pink);
  color: white;
}

.btn-pink:hover {
  cursor: pointer;
  background-color: var(--main-color-dark-pink);
}

.btn-long {
  width: 200px;
  justify-content: center;
}

.btn-blue {
  background-color: var(--main-color-blue);
  color: white;
}

a.btn-blue {
  color: white !important;
}

.btn-full {
  width: 90%;
}

.content-side a.btn-full {
  height: 80px;
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.faq-search .btn-box {
  width: 30%;
  text-align: center;
  display: block;
  height: auto;
}

.faq-search .btn-box:before {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f002";
  margin-right: 6px;
}

.faq-dropdown {
  width: var(--main-width);
  margin: 10px auto;
  border-radius: var(--main-border-radius);
}

/* Narrow the text rule to only the FAQ body, not any inner divs elsewhere */
.faq-dropdown .faq-content p {
  color: var(--main-color-dark-blue);
  line-height: 1.4;
  margin: 0;
}

/* Header styles (you already have most of this) */
.faq-dropdown h2 {
  color: var(--main-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.5rem;
  margin: 0;
  cursor: pointer;
}

/* If you're using Font Awesome 4.x, use the FA font and proper codepoints */
.faq-dropdown h2.icon-plus::after,
.faq-dropdown h2.icon-minus::after {
  font-family: "FontAwesome"; /* FA 4.x */
  font-weight: normal; /* FA4 ignores weight */
  margin-left: 10px;
}

/* FA 4.x codepoints: plus = f067, minus = f068 */
.faq-dropdown h2.icon-plus::after {
  content: "\f067";
}

.faq-dropdown h2.icon-minus::after {
  content: "\f068";
}

/* Optional hover highlight */
.faq-dropdown:hover {
  background: #f9fafb;
  border-radius: var(--main-border-radius);
}

.uppercase {
  text-transform: uppercase;
}

.phone-ico:before {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f095";
  margin-right: 6px;
}
.user-ico:before {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f007";
  margin-right: 6px;
}

/*.banner {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    
}
*/

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: var(--main-color-blue);
  margin-bottom: 50px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 2.54 / 1;
}

.banner-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.banner-background-image img {
  width: 100%;
  height: auto;
}

.right-banner-img {
  max-width: 45%; /* adjust image size */
  height: auto;
  margin-left: 40px; /* spacing from text */
  z-index: 2;
  position: relative; /* allows vertical offset */
}

/* variant that sits 100px lower */
.right-banner-img--lower {
  top: 100px;
}

.disclaimer {
  position: absolute;
  z-index: 10;
  color: white;
  left: 0;
  bottom: 20px;
  padding: 0 40px;
}

.trust-pilot-logo {
  width: 275px !important;
}

.banner-content-box {
  position: absolute;
  top: 0;
  color: #ffffff;
  width: 500px;
  flex: 1;
  z-index: 2;
  padding: 20px 40px;
}

.standard-baner {
  height: 450px;
}

.background-bar .banner-content-box {
  width: 635px;
}

.banner-content-box h1 {
  margin-bottom: 0;
  margin-top: 80px;
  font-size: 3.8rem;
}

.banner-content-box h2 {
  margin: 0;
  font-weight: 200 !important;
  font-size: 3rem;
  color: #ffffff !important;
}

.banner-content-box h3 {
  margin: 0;
  font-weight: 200;
  color: #ffffff !important;
  margin-top: 10px;
}

.qute-box {
  display: flex;
  position: absolute;
  bottom: 90px;
  padding: 0 40px;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.qute-box span {
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5rem;
}

.background-bar .banner-content-box h1 {
  font-weight: 500;
}

.background-bar .banner-content-box h2 {
  font-weight: 200;
}

.footer-column,
.footer-column a {
  color: var(--main-color-white);
  text-decoration: none;
}

.footer-column ul li {
  list-style: none;
  line-height: 1.5;
}

.icon-grid-box {
  justify-items: center;
  text-align: center;
}

.icon-grid-box.faq-grid {
  margin-top: 60px;
}

.icon-grid-box h2 {
  margin: 10px 0;
  color: var(--main-color-dark-blue);
}

/* .icon-grid-box h2:has(+ h3) {
            margin: 0;
        }*/

.icon-grid {
  display: flex;
  min-height: 80px;
  width: var(--main-width);
  margin: 20px auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.faq-grid .icon-grid {
  height: auto;
}

.faq-grid .icon-grid .icon-item:hover {
  color: #ffffff;
  background-color: var(--main-color-blue);
  cursor: pointer;
}

.single-item .icon-grid {
  height: auto;
  margin-top: 60px;
}

.single-item .icon-item {
  width: 100%;
  font-weight: 400;
}

.icon-grid-with-big-number {
  width: 1120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: normal;
  margin-top: 65px;
}

.icon-item {
  z-index: 2;
  color: var(--main-color-blue);
  padding: 25px;
  border-radius: var(--main-border-radius);
  background: var(--main-color-greyBG);
  text-align: center;
  font-weight: 600;
  line-height: 2;
  width: 33%;
  text-decoration: none;
}

.icon-click:hover {
  cursor: pointer;
}

.icon-item.pink-bg-dark {
  width: 100%;
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.icon-item.pink-bg-dark p {
  width: auto;
  font-size: 20px;
}

.icon-grid-with-big-number .icon-item {
  line-height: 1 !important;
  text-align: left;
  padding: 0;
  top: 0;
  width: 100%;
}

.icon-grid-with-big-number .icon-item span {
  margin-top: 10px;
  display: block;
}

.icon-grid-with-big-number .icon-item i {
  padding: 20px 0;
}

.icon-item i {
  font-size: 2.5rem;
}

.icon-item .fa-plus,
.icon-item .fa-minus {
  font-size: 1.5rem !important;
}

.icon-item span {
  font-weight: 400;
}

.icon-item p {
  text-align: center;
  display: block;
  width: 100%;
}

.grey-bg {
  background-color: var(--main-color-greyBG);
}

.green-bg {
  background-color: var(--main-color-green);
  color: #ffffff;
}

.pink-bg {
  background-color: var(--main-color-pinkBG);
}

.pink-bg-dark {
  background-color: var(--main-color-dark-pink);
  color: #ffffff;
}

.img-benefit-list {
  margin: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefit-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 500px 500px;
  justify-content: center;
  gap: 40px;
  color: var(--main-color-dark-blue);
}

.benefit-list p {
  margin: 20px 0;
}

benefit-list.pink-bg {
  margin-bottom: 0 !important;
}

.img-benefit-list img {
  width: 100%;
}

.img-benefit-list-img {
  position: relative;
  top: 0;
  left: 0;
}

.img-benefit-list-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 100%;
}

.img-benefit-list-content {
  width: 500px;
  max-width: 100%;
  min-width: 0;
  color: var(--main-color-dark-blue);
}

.img-benefit-list-content .btn-box {
  margin-bottom: 30px;
}

.benefit-list-content h2,
.benefit-list-content {
  color: #ffffff;
}

.benefit-list-content {
  padding: 30px;
}

.benefit-list-content strong {
  font-weight: 500;
}

.img-benefit-list-content h2 {
  font-weight: 600;
  margin: 30px 0;
  font-size: 1.5rem !important;
}

.img-benefit-list-content ul,
.benefit-list-content ul {
  list-style: none;
  line-height: 2;
  margin-bottom: 30px;
}

.benefit-list-content.negative ul li {
  position: relative;
  padding-left: 40px;
}

.img-benefit-list-content ul li:before {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f00c";
  margin-right: 20px;
}

/* Flipped variant — image on RIGHT, content on LEFT (ContentType 8) */
.img-benefit-list--flipped .img-benefit-list-img {
  order: 2;
}

.benefit-list-content.negative ul li::before {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
}

.icon-inline .icon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.two-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: var(--main-width);
  gap: 25px;
  grid-column-gap:25px;
  grid-row-gap:25px;
}

.pink-icon .icon-item {
  background-color: var(--main-color-dark-pink);
  color: #ffffff;
  text-align: left;
  line-height: 1.5;
  padding: 0;
  width: 100%;
}

.text-separator {
  display: block;
  font-weight: 600;
  margin: auto;
}

.cta-banner {
  background-color: var(--main-color-blue);
  height: 160px;
  position: relative;
  top: 0;
}

.cta-banner img {
  position: absolute;
  top: 0;
  right: 0;
}

.cta-items {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  gap: 32px;
}

.cta-items p {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 700;
}

.blue-alert {
  height: 100%;
  width: 100%;
  position: absolute;
}

.alert-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 100%;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
}

.alert-items i {
  font-size: 2.8rem;
}

.blue-bg {
  color: #ffffff;
  background-color: var(--main-color-blue);
}

.icon-to-left .icon-item {
  text-align: left;
}

.faq-search {
  border-radius: var(--main-border-radius);
  width: var(--main-width);
  height: fit-content;
  display: block;
  margin: 30px auto;
}

.faq-search p {
  padding: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
}

.form-control input,
.form-control select,
.form-control textarea {
  border-radius: var(--main-border-radius);
  border: 0;
  outline: none;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.form-control input,
.form-control select {
  height: 60px;
}

.form-control.faq-search input {
  width: 70%;
}

.form-control.faq-search input,
.form-control.faq-search input::placeholder {
  letter-spacing: 2px;
  font-weight: 500;
  font-style: italic;
}

.faq-search form {
  display: flex;
  gap: 10px;
  padding: 0 30px 30px 30px;
}

.separator {
  border-top: 2px solid black;
  margin-top: -20px;
  padding-top: 20px;
}

.small-icon {
  font-size: 1.5rem !important;
}

.content-side,
.content-side a {
  color: var(--main-color-dark-blue);
}

section h2,
section h3 {
  margin-bottom: 32px;
  color: var(--main-color-dark-blue);
}

section h2 {
  font-size: 3rem;
}

section h3 {
  font-size: 1.5rem;
}

h3:has(.text-separator) {
  margin-bottom: 0 !important;
}

.contact-form label:nth-child(n + 4) {
  grid-column: 1 / -1;
}

.form-control .contact-form input,
.form-control .contact-form select,
.form-control .contact-form textarea {
  background-color: var(--main-color-greyBG);
  cursor: pointer;
  color: var(--main-color-grey);
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  border: 1px solid #ccc !important;
}

.form-control .contact-form input:-webkit-autofill,
.form-control .contact-form select:-webkit-autofill,
.form-control .contact-form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--main-color-greyBG) inset !important;
  -webkit-text-fill-color: var(--main-color-grey) !important;
  box-shadow: 0 0 0 1000px var(--main-color-greyBG) inset !important;
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: background-color 5000s ease-in-out 0s;
}

.form-control .contact-form input:autofill,
.form-control .contact-form select:autofill,
.form-control .contact-form textarea:autofill {
  background-color: var(--main-color-greyBG) !important;
  color: var(--main-color-grey) !important;
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
}

.full-width {
  width: 100% !important;
}

.contact-form button {
  height: 80px;
  justify-content: center;
}

.contact-form button,
.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
}

.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
  color: var(--main-color-grey);
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.custom-select::after {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f0dd";
  position: absolute;
  top: 40%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.25rem;
  color: var(--main-color-grey);
}

.blog-grid-box h2 {
  text-align: center;
  padding: 32px 0;
  margin: 0;
}

.blog-grid {
  width: var(--main-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}

.blog-grid-item-img {
  border-radius: var(--main-border-radius);
  overflow: hidden;
}

.blog-grid-item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-grid-item h3 {
  font-size: 1.3rem;
}

.blog-grid-item a,
.blog-grid-item h3 {
  margin: 15px 0;
}

.blog-grid-item a {
  font-weight: 600;
  color: var(--main-color-dark-blue);
  text-decoration: none;
  display: flex;
  height: 20px;
  gap: 10px;
  align-items: center;
}

.blog-grid-item a::after {
  content: "\f061";
  font-family: var(--font-awesome);
}

.blog-grid-item span {
  display: flex;
}

.two-columns,
.one-column {
  display: grid;
  margin: 40px auto;
  width: var(--main-width);
  align-items: start;
  gap: 0px;
}

/* Specific column counts */
.two-columns {
  grid-template-columns: 1.5fr 1fr;
  padding-top: 60px;
}

.one-column {
  grid-template-columns: 1fr;
}

.one-column ul {
  padding-left: 30px;
  padding-bottom: 20px;
}

.one-column ul li {
  line-height: 1.5em;
  list-style: none;
}
.festive ul {
  margin: 0;
  padding: 20px 0px;
  font-size: 1.2rem;
}
.festive p {
  margin: 10px 0;
}
/* Responsive collapse: both become single column on mobile */
@media (max-width: 768px) {
  .two-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.two-columns p,
.one-column p {
  line-height: 1.3;
  font-size: 1.2rem;
}

.cta-banner-white {
  display: block;
  width: var(--main-width);
  margin: 64px auto;
}

.cta-banner-white img {
  width: 100%;
  height: auto;
}

.cms-empty {
  text-align: center;
  margin: 80px auto;
  max-width: 600px;
  padding: 40px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cms-empty p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 1rem;
}

.cms-empty a {
  color: var(--link-color, #0078d7);
  text-decoration: none;
  font-weight: 600;
}

.cms-empty a:hover {
  text-decoration: underline;
}

.nav-link {
  font-size: 1.25rem;
  font-weight: 500;
}

.expand-box,
.fix-box {
  background-color: var(--main-color-greyBG) !important;
  color: var(--main-color-grey);
  text-align: left;
  line-height: 1.5;
  border-radius: var(--main-border-radius);
  margin-bottom: 20px;
}

.expand-box {
  width: var(--main-width);
  display: none;
}

.fix-box {
  width: 100%;
  display: block;
}

.box-wrap {
  padding: 25px;
}

.expand-box-header {
  display: flex;
  justify-content: space-between; /* title left, X right */
  align-items: center; /* vertically centered */
  padding: 8px 12px;
  border-radius: var(--main-border-radius);
}

.expand-box-body {
  padding: 8px 12px;
}

.fix-box .expand-box-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes button to the bottom */
  height: 350px;
}

.expand-box-body ul {
  padding: 20px;
}

.expand-box-body .btn-box {
  margin-top: 15px;
  align-self: flex-end;
}

.expand-box-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--main-color-dark-blue);
}

.expand-box-close {
  text-align: right;
  cursor: pointer;
  color: var(--main-color);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.expand-box-close:hover {
  color: var(--main-color-dark-blue);
}

.two-columns.about-us {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 0px;
  margin: 0 auto;
}

.two-columns.about-us .no-jargon:nth-child(1) {
  grid-column: 1;
}

.two-columns.about-us .no-jargon:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.two-columns.about-us .no-jargon:nth-child(3) {
  grid-column: 1;
}

.no-jargon h2 {
  font-size: 2rem;
}

.no-jargon ul {
  background-color: var(--main-color-yellow);
  display: block;
  padding: 30px;
  border-radius: var(--main-border-radius);
}

.no-jargon ul li {
  list-style: none;
  color: #ffffff;
  line-height: 1.5;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
}

.no-jargon ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.claim-card {
  height: 100%;
}

.card1 {
  background-image: url("../img/claim1.png");
  background-origin: content-box;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-box {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
}

a.icon-box {
  color: #ffffff;
  text-decoration: none;
}

.contact-form-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* ensures both columns have equal height */
  width: var(--main-width);
  gap: 40px;
  margin: 64px auto;
}

.content-side {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* space between top text and button at bottom */
}
.content-side h3 {
  font-size: 1.2rem;
}
.form-control {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* keeps submit button at bottom */
}

/* make form take full height */
.contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
  justify-content: space-between;
}

.contact-form label:last-child {
  margin-top: auto; /* pushes submit button to bottom */
}

.two-columns-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.yellow-bg {
  background-color: #f9b000;
}
.green-bg {
  background-color: #5aba23;
}
.purple-bg {
  background-color: #3e2f83;
}

.step-box {
  position: relative;
  top: 0;
  margin: auto;
}

.step-card {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: 32px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 9% 101%, 0 100%);
  background-color: #f1f1f1;
  z-index: 99999;
}

.step-bg {
  position: absolute;
  top: 0;
  width: 279px;
  height: 380px;
  border-radius: 32px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 9% 101%, 0 100%);
  z-index: 0;
  transform: scaleX(-1);
}

.step-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  border-radius: 32px 32px 0 0;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 40px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.step-content {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #000;
  z-index: 3;
  width: 80%;
}

.step-content p {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.step-content span {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.step-content a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}

.step-icon {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.step-icon img {
  margin-bottom: 10px;
}
.alert {
  display: block;
  margin: auto;
  width: var(--main-width);
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.custom-alert {
  text-align: center;
}
.custom-alert a {
  text-decoration: none;
  padding: 10px;

  display: block;
  width: fit-content;
  margin: 10px auto;
  color: #ffffff;
  border-radius: var(--main-border-radius);
}
.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.alert-success a {
  background-color: #155724;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger a {
  background-color: #721c24;
}
.error-message {
  color: darkred;
  font-size: 0.9rem;
}
.help-desk {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 32px;
}
/* COKIE START */
/* Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: -100vh;
  left: 0;
  width: 100%;
  text-align: center;
  transition: bottom 1s ease-in-out;
  z-index: 99999999;
}
.cookie-bannner-box {
  width: 65%;
  padding: 2rem;
  background-color: #f0f0f0;
  margin: auto;
  border-radius: var(--main-border-radius);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 1rem;
}
.cookie-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.cookie-buttons button {
  font-family: "Outfit", sans-serif;
}
#essential-btn {
  background-color: var(--main-color-blue);
  color: #fff;
}

#accept-btn {
  background-color: var(--main-color-green);
  color: #fff;
}

/* Show banner */
.cookie-banner.show {
  bottom: 60px;
}

/* COKIE END */

/* ── Home page image/content blocks ── */
.home-content-block {
  display: flex;
  align-items: stretch;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.home-content-block--flipped {
  flex-direction: row-reverse;
}

.home-content-block__img {
  flex: 0 0 50%;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.home-content-block__img img {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  display: block;
}

.home-content-block__text {
  flex: 0 0 40%;
  padding: 60px 50px;
  color: var(--main-color-dark-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-content-block__text h2 {
  font-weight: 600;
  margin: 0 0 20px;
  font-size: 1.5rem;
}

.home-content-block__text p {
  margin: 0 0 20px;
}

.home-content-block__text ul {
  list-style: none;
  line-height: 2;
  margin-bottom: 30px;
  padding: 0;
}

.home-content-block__text ul li {
  display: flex;
  align-items: flex-start;
}

.home-content-block__text ul li::before {
  font-family: var(--font-awesome);
  font-weight: 900;
  content: "\f00c";
  margin-right: 16px;
  flex-shrink: 0;
}

.home-content-block__text .btn-box {
  align-self: flex-start;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .home-content-block,
  .home-content-block--flipped {
    flex-direction: column;
  }

  .home-content-block__img {
    min-height: 260px;
  }

  .home-content-block__text {
    padding: 40px 24px;
  }
}
/* ── End home page image/content blocks ── */
