* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding-bottom: 550px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.title-copyright{
  background-image: url('../img/copy.webp');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  height: 40rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Gradient overlay for better text readability */
.title-copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: -1;
}

/* Ensure text stays above gradient */
#title_1, #subtitle {
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

#title_1 {
  color: #FFF;
  text-align: center;
  font-family: 'Outfit';
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  text-transform: uppercase;
  margin-bottom: 27px;
}

#subtitle {
  color: #FFF;
  text-align: center;
  font-family: 'Outfit';
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

main {
  margin: 0 auto;
  background-color: white;
  width: 100%;
}

#tl-main {
  max-width: 1200px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 5% 0;

}

#dff {
  color: #555;
  font-family: 'Roboto';
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  width: 80%;
  max-width: 1200px;
  text-align: justify;
  position: relative;
  z-index: 1;
}

#wrapperDesktop {
  display: flex;
  height: fit-content;
  justify-content: center;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#wrapperMobile {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#g, #d {
  flex: 1;
  position: relative;
  height: fit-content;
  max-width: 500px;
}

#g {
  top: 0;
}

#d {
  align-self: center;
  margin-top: -13%;
}

.main-p {
  margin-bottom: 25px;
  width: 100%;
}

#d > .main-p {
  width: 100%;
}

.main-p > p,
.main-p > li {
  color: #555555;
  font-family: 'Roboto';
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-wrap: wrap; 
}

.main-p > h2 {
  color: #4E4E4E;
}

#cmt {
  margin-top: 60px;
  color: #555555;
  font-family: 'Roboto';
  font-size: 23px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15%;
}


/* FAQ Section */
#faq {
  background-color: #EFF3F5;
  position: relative;
  min-height: fit-content;
  padding-bottom: 50px;
  z-index: 10;
}

#faq-wrapper {
  margin: 0 auto;
  width: 70%;
}

#faq-hd {
  color: black;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin: 40px 0;
}

.faq-title {
  color: #1486B1;
  text-align: start;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.Q-container {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 30px;
  cursor: pointer;
}

.A-container {
  color: #555;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 10px;
}

.arrow {
  cursor: pointer;
}

.questions-wrapper {
  background-color: #eff3f5;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.questions {
  max-width: 610px;
  margin: 0 auto;
  padding: 20px;
}

.questions-title {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 16px 0;
}

.accordion-item {
  padding: 10px 0;
}

.accordion-header {
  color: #0e556ed7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  font-size: 19px;
  font-weight: 500;
}

.accordion-icon {
  width: 20px;
  height: 20px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px;
}

.accordion-content p {
  padding-bottom: 10px;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  color: #555555;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
  transition: max-height 0.35s ease-in;
}

/* -------- Responsive -------- */


@media screen and (max-width: 1024px) {
  .title-copyright{
    padding: 60px 30px;
    height: auto;
  }

  #title_1 {
    font-size: 42px;
    line-height: 56px;
  }

  #subtitle {
    font-size: 22px;
  }

  #dff {
    font-size: 20px;
    max-width: 95%;
  }

  #tl-main,
  #wrapperDesktop,
  #wrapperMobile {
    max-width: 95%;
  }

  #wrapperDesktop {
    gap: 30px;
  }

  #g, #d {
    max-width: 100%;
  }

  #faq-wrapper {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }

  #wrapperMobile {
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 20px;
  }

  #wrapperDesktop {
    display: none;
  }

  #d {
    margin-top: 0;
  }

  /* Smaller SVGs on tablet */
  #right-side-icon,
  .left-side-icon {
    width: 400px !important;
  }

  #left-bottom-side-icon {
    width: 300px !important;
  }
}
/* ----------- Breakpoint: 768px and below (Tablets) ------------ */
@media screen and (max-width: 768px) {
  body{
    padding-bottom: 35%;
  }
  .title-copyright{
    background-image: url('../img/copy-mobile.webp');
  }
  #right-side-icon{
    position: absolute;
    right: 0%;
    overflow: hidden;
  }
  main {
    width: 100%;
  }

  .title-copyright{
  
    padding: 145px 30px;
    height: auto;
  }
  #bottom-right-shape {
    display: none !important;
  }
  #title_1 {
    font-size: 42px;
    line-height: 56px;
    margin: -70px 0px 11px 0px;
  }

  #subtitle {
    font-size: 22px;
  }

  #dff {
    font-size: 20px;
    line-height: 2rem;
    max-width: 100%;
    margin: 15px;
    text-align: left;
  }

  #tl-main,
  #wrapperMobile {
    max-width: 95%;
  }
  .main-p > h2 {
    color: #4E4E4E;
    margin: 29px;
    line-height: 2rem;
  
  }
  .main-p > p, .main-p > li {
    margin: 29px;
    line-height: 2rem;
    text-align: left;

  }

  #wrapperMobile {
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 20px;
  }

  #wrapperDesktop {
    display: none;
  }

  #faq-wrapper {
    width: 85%;
    padding: 0 15px;
  }

  #g, #d {
    max-width: 100%;
  }

  #d {
    margin-top: 0;
  }

  /* Smaller SVGs */
  #right-side-icon,
  .left-side-icon {
    width: 300px !important;
  }

  #left-bottom-side-icon {
    width: 250px !important;
  }
}
.questions-title {
  font-weight: bold;
  text-align: center;
}

/* ----------- Breakpoint: 374px and below (Small phones) ------------ */
@media screen and (max-width: 374px) {
  #right-side-icon{
    position: absolute;
    right: 0%;
    overflow: hidden;
  }
  .title-copyright{
    padding: 87px 30px;
  }
  #title_1 {
    font-size: 38px;
    line-height: 42px;
    margin: -9px;
  }

  #subtitle {
    font-size: 18px;
    margin: 33px;
  }

  #dff {
    font-size: 20px;
    gap: 20px;
  }

  .main-p > p,
  .main-p > li {
    font-size: 20px;
    margin: 26px;
  }

  .main-p > h2 {
    color: #4E4E4E;
    margin: 26px;
  }

  #cmt {
    font-size: 18px;
    text-align: left;
    margin-top: 36px;
  }

  /* Even smaller SVGs */
  #right-side-icon,
  .left-side-icon {
    width: 200px !important;
  }

  #left-bottom-side-icon {
    width: 180px !important;
  }
}

/* ----------- Breakpoint: 320px and below (Very small phones) ------------ */
@media screen and (max-width: 320px) {
  #title_1 {
    font-size: 34px;
    line-height: 38px;
  }

  #subtitle {
    font-size: 16px;
  }

  #dff {
    font-size: 18px;
  }

  .main-p > p,
  .main-p > li {
    font-size: 18px;
  }

  #right-side-icon,
  .left-side-icon {
    width: 160px !important;
  }

  #left-bottom-side-icon {
    width: 140px !important;
  }
  
}
@media (min-width: 768px) and (max-width: 1024px)and (orientation: portrait)  {
  #right-side-icon{
    position: absolute;
    right: 0%;
    overflow: hidden;
  }
  .title-copyright{
      height: 40rem;
  }
  #title_1 {
    font-size: 70px;
    line-height: 56px;
}
#subtitle {
  font-size: 35px;
}
#dff {
  font-size: 35px;
}
  main.content-main {
      padding: 0 40px !important;
      align-content: center;
    }
  #hero-title {
      font-size: 70px;
      font-weight: 700;
      line-height: 60px;
      text-transform: uppercase;
      margin-bottom: 20px;
  }
  #hero-sub {
      max-width: 80%;
      font-size: 35px;
      font-weight: 400;
      width: 100%;
  }
  #definition {
      font-size: 35px;
      color: #555;
      font-weight: 500;
      line-height: 1.6;
      font-style: normal;
  }
  .main-p >h2 {
      width: 100%;
      font-size: 35px;
      font-weight: 700;
  }
  .main-p >p{
      font-size: 32px;
      font-weight: 400;
      min-width: 100%;
  }
  #sub-main{
      font-size: 30px;}
  
  .content {
    margin: 50px;
  }
  .footer-note{
    font-size: 30px;
  }
  .questions-title {
    font-size: 35px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.accordion-header {
  font-size: 32px;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.accordion-content p {
  font-size: 32px;
}

.accordion-icon {
  height: 35px;
  width: 35px;
  flex-shrink: 0;
}

/* MOVED INSIDE THE MEDIA QUERY */
.main-p {
  width: 83%;
}
#cmt{
  font-size: 30px;

}

  #dff,
  .main-p > h2,
  .main-p > p,
  .main-p > li,
  #cmt {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Specific centering */
  #dff {
    max-width: 800px; 
    font-size: 32px;
  }
  
  .main-p > p,
  .main-p > li {
    text-align: center !important;
    margin: 30px auto !important;
    max-width: 90%;
    font-size: 26px;
  }
  
  .main-p > h2 {
    text-align: center !important;
    margin: 20px auto !important;
    font-size: 30px;
  }
  
  #cmt {
    text-align: center !important;
    max-width: 700px;
    font-size: 26px;
  }
  
  /* Center the containers */
  #wrapperDesktop {
    justify-content: center;
    align-items: center;
  }
  
  #g, #d {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Adjust font sizes for tablet */
  .main-p > h2 {
    font-size: 32px;
  }
  
  .main-p > p {
    font-size: 28px;
  }
  #g .main-p,
  #d .main-p {
    width: 83% !important;
  }
  
  /* Apply same styling to ALL paragraphs in both columns - LEFT ALIGNED */
  #g .main-p > p,
  #d .main-p > p {
    text-align: left !important; 
    margin: 30px 0 !important;
    max-width: 100%;
    font-size: 30px;
  }
  
  /* Apply same styling to ALL headings in both columns - LEFT ALIGNED */
  #g .main-p > h2,
  #d .main-p > h2 {
    text-align: left !important; 
    margin: 20px 0 !important; 
    font-size: 32px;
  }
  
  /* Style the #cmt element consistently - LEFT ALIGNED */
  #cmt {
    font-size: 30px !important;
    text-align: left !important; 
    max-width: 100%;
    margin: 0 !important; 
    padding-right: 0 !important;
    width: 83% !important;
  }
}


@media (min-width: 1601px){
  .main-p > h2 {
    font-size: 30px;
  }
  .main-p > p, .main-p > li {
    font-size: 24px;
    color: #8E8E8E;
  }
  #dff {
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    max-width: 100%;
    text-align: justify;
    position: relative;
    z-index: 1;
}
.questions {
  max-width: 800px; 
}

.accordion-header {
  font-size: 24px;
  font-weight: 500;
}

.accordion-icon {
  width: 24px;
  height: 24px;
}

.links-grid {
  margin: 60px 47px 22px -120px;
}

.accordion-content p {
  font-size: 22px;
}
#tl-main {
  max-width: 1600px;
  margin: 50px auto 0 auto;
}
#wrapperDesktop {
  display: flex;
  height: fit-content;
  justify-content: center;
  gap: 60px;
  max-width: 1600px;
  margin: 0;
}
#g, #d {
  max-width: 609px;
}


}
/* Tablets - 1366x768 */
@media (min-width: 768px) and (max-width: 1366px)and (orientation: landscape) {
  /* Apply same LEFT styling to ALL main-p elements in both columns */
  #g .main-p,
  #d .main-p {
    width: 83% !important;
    margin: 0 0 0 68px !important;
  }
  
  /* Apply same LEFT styling to ALL paragraphs in both columns */
  #g .main-p > p,
  #d .main-p > p {
    text-align: left !important;
    margin: 30px 0 !important;
    max-width: 100%;
    font-size: 26px;
  }
  
  /* Apply same LEFT styling to ALL headings in both columns */
  #g .main-p > h2,
  #d .main-p > h2 {
    text-align: left !important;
    margin: 20px 0 ;
    font-size: 30px;
    margin-bottom: -6%;
  }
  
  /* Style the #cmt element consistently - LEFT ALIGNED */
  #cmt {
    font-size: 30px !important;
    text-align: left !important;
    max-width: 100%;
    margin: 0 !important;
    padding-right: 0 !important;
    width: 83% !important;
    margin-left: 68px !important;
  }
  #d {
    margin-top: -31%;
}
  #g{
    margin-bottom: 6%;
  }
  #g, #d {
    flex: 1;
    position: relative;
    height: fit-content;
    max-width: 520px;
}
#g .main-p > p, #d .main-p > p {
  margin: 30px 0 !important;
  max-width: 100%;
  font-size: 24px;
  text-align: justify;
  color: #8E8E8E;
}
#dff{
  font-size: 24px;
  padding-right: 30px;
}
#cmt {
  font-size: 23px !important;
  margin: 0 !important;
  margin-left: 68px !important;
}
}
/* FORCE SHAPES VISIBLE - ADD AT VERY END OF CSS */
.left-side-icon{
  position: absolute;
  left: 0px;
  /* z-index: 1; */
}
#right-side-icon{
  position: absolute;
  right: 0%;
top: 20%;
  /* z-index: 1; */
}
/* ===== PROMOS SECTION ===== */
.promos-section {
  background-color: #ffffff;
  margin: 0;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.promos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
}
.promos-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.promos-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  align-items: flex-start;
}
.promos-item, .promo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
  min-height: 200px;
}
.promos-left .promos-item {
  width: 100%;
  max-width: 612px;
  height: 613px;
}
.promos-right .promo-item {
  width: 100%;
  max-width: 644px;
  height: 297px;
}
.promos-item img {
  display: block;
  height: auto;
}
.promos-item img.promo-bg,
.promos-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
/* Promo background colors */
.promo1 { background-color: #e9a776 !important; }
.promo2 { background-color: #74a6ad !important; }
.promo3 { background-color: #f9bc48 !important; }

/* Promo content */
.promo-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 3;
}

.promo-content h1 {
  margin: 0 0 10px;
  font-size: 35px;
  font-family: "Roboto";
}

.promo-content ul {
  padding: 0;
  margin: 0 0 15px;
  list-style: none;
}

.promo-content li {
  font-family: "Roboto";
  font-size: 20px;
  margin-bottom: 10px;
}

.promo-content button {
  width: 234.71px;
  height: 53px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 170px;
  cursor: pointer;
  font-size: 20px;
  font-family: "Roboto";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Left promo specific */
.promos-left .promo-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 50px;
  height: 100%;
}

.promos-left .promo-content h1 {
  margin-bottom: 20px;
}

.promos-left .promo-content button {
  margin-top: 20px;
}

/* Right promos specific */
.promos-right .promo-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 340px;
  padding-left: 50px;
  padding-top: 50px;
}

/* Promo decorative shapes */
.promos-bg-shape {
  position: absolute;
  bottom: 0;
  right: 70px;
  width: 700px;
  height: auto;
  transform: translate(40%, 25%) scale(-1, -1);
  z-index: 0;
  pointer-events: none;
}

.promos-left .circle-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 450px;
  height: auto;
  transform: translate(-40%, 50%);
  z-index: 0;
  pointer-events: none;
}

.promos-section .circle-shape,
.promos-section .promos-bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.promos-section .promos-container,
.promos-section .promos-item,
.promos-section .promo-content {
  z-index: 1;
}


/* Mobile responsive styles for promos */
@media (max-width: 900px) {
  .promos-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  
  .promos-left,
  .promos-right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .promos-right {
    margin-top: 20px;
  }
  
  .promos-left .promos-item,
  .promos-right .promos-item {
    width: min(538px, 100%);
    height: 412px;
    margin: 0 auto;
    display: block;
    flex: 0 0 auto;
  }
  
  .promos-left .circle-shape {
    transform: translate(-20%, 210%);
    width: 300px;
  }
  
  .promo1 ul li:nth-child(3) {
    display: none;
  }
  
  .promo-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
  }
  
  .promo-content h1,
  .promo-content ul {
    margin: 0 0 10px 0;
  }
  
  .promo-content button {
    margin-top: 15px;
    align-self: flex-start;
  }
  
  .promos-right .promo-content {
    justify-content: flex-end !important;
    padding-left: 20px !important;
    padding-top: 0 !important;
    max-width: 100% !important;
  }
  
  .promos-left .promo-content {
    justify-content: flex-end !important;
    padding-left: 20px !important;
    padding-top: 0 !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    gap: 10px;
  }
}

/* Small phones promo adjustments */
@media (max-width: 410px) {
  .promo-content h1 {
    font-size: 24px;
  }
  
  .promo-content li {
    font-size: 16px;
  }
  
  .promo-content button {
    width: 180px;
    height: 44px;
    font-size: 16px;
  }
}

/* 1366px screens promo adjustments */
@media (max-width: 1400px) and (min-width: 1201px) {
  .promos-container {
    max-width: 920px;
    gap: 20px;
  }
  
  .promos-left .circle-shape {
    width: 450px;
    transform: translate(-60%, 50%);
  }
  
  .promos-left .promos-item {
    width: 440px;
    height: 520px;
  }
  
  .promos-right .promos-item {
    width: 440px;
    height: 250px;
  }
  
  .promo-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .promo-content li {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .promo-content button {
    width: 180px;
    height: 44px;
    font-size: 16px;
    margin-top: 15px;
  }
}

/* Large desktop promo adjustments */
@media (min-width: 1601px) {
  body{
    padding-bottom: 4%;
  }
  .promos-left .circle-shape {
    width: 600px;
    left: -200px;
    transform: translateX(-40%) translateY(50%);
  }
  
  .promos-bg-shape {
    right: 0;
    bottom: 200px;
    transform: translateX(40%) translateY(50%) scale(-1, -1);
  }
  
  .promos-left .promos-item {
    width: 612px;
    height: 613px;
  }
  
  .promos-right .promos-item {
    width: 644px;
    height: 297px;
  }
  
  .promo-content h1 {
    font-size: 35px;
  }
  
  .promo-content li {
    font-size: 20px;
  }
  
  .promo-content button {
    width: 234.71px;
    height: 53px;
    font-size: 20px;
  }
}

/* Desktop fixed dimensions */
@media (min-width: 1025px) {
  .promos-left .promos-item {
    width: 612px;
    height: 613px;
  }
  
  .promos-right .promos-item {
    width: 644px;
    height: 297px;
  }
}

/* Firefox fixes for promos */
@-moz-document url-prefix() {
  .promos-section {
    display: block !important;
    visibility: visible !important;
  }
  
  .promos-container {
    display: grid !important;
  }
  
  .promos-item, .promo-item {
    display: block !important;
    visibility: visible !important;
  }
}

/* Utility classes for promos */
.promos-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}
/* Bottom-right shape positioning */
#bottom-right-shape {
  position: absolute; /* relative to their section */
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.promos-bg-shape {
  position: absolute;
  bottom: 0;
  right: 70px;
  width: 700px;
  height: auto;
  transform: translate(40%, 25%) scale(-1, -1);
  z-index: 0;
  pointer-events: none;
}



@media (min-width: 768px) and (max-width: 1024px) {
  .policy-block {
    width: 92%;
    margin: 0 0px 2px 10px;
    padding: 0 0 0 0;
    padding-left: 60;
}
  .links-grid {
    grid-template-columns: 1fr !important; 
    gap: 20px !important;
    margin: 60px auto 20px auto !important;
    padding: 0 50px !important;
    justify-content: center !important;
  }
  
  .links-col {
    width: 100% !important;
    gap: 15px;
  }
  
  .links-col a {
    font-size: 22px !important;
    padding: 10px 15px !important;
    justify-content: flex-start !important;
  }
  
  .link-text{
    font-size: 37px;
    font-weight: bold;
  }
  .icon-default{
    width: 35px;
    height: 35px;
    margin-right: 5px;
  }
  .icon-hover{
    width: 35px;
    height: 35px;
  }
  .promos-container {
    grid-template-columns: 1fr !important;
    max-width: 95%;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-items: center !important;
  }
  
  .promos-left, 
  .promos-right {
    display: block !important;
    width: 90%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .promos-left .promos-item,
  .promos-right .promos-item {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    margin-bottom: 24px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .policy-text {
    font-size: 35px;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-style: normal;
  }
  
  .overlay-title {
    font-size: 70px;
    font-weight: 700;
  }
  
  .overlay-subtitle {
    font-size: 35px !important; 
  }
  
  .content {
    margin: 50px;
  }
  .footer-note {
    font-size: 30px;
    padding-left: 112px;
}
  .questions-title {
    font-size: 35px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.accordion-header {
  font-size: 32px;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.accordion-content p {
  font-size: 32px;
}

.accordion-icon {
  height: 35px;
  width: 35px;
  flex-shrink: 0;
}
}

@media (max-width: 1400px) and (min-width: 1201px) {
  .links-grid {
    display: grid;
    grid-template-columns: auto auto;
    font-size: 24px;
    font-family: "Roboto";
    gap: 390px;
    justify-content: center;
    margin: 60px auto 20px -280px;
    padding-right: 0;
}
  .promos-container {
    max-width: 920px;
    gap: 20px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
  }
  
  .promos-left {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .promos-right {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .promos-left .circle-shape {
    width: 450px;
    transform: translate(-60%, 50%);
  }
  
  .promos-left .promos-item {
    width: 440px;
    height: 520px;
    margin: 0 auto;
  }
  
  .promos-right .promos-item {
    width: 440px;
    height: 250px;
    margin: 0 auto;
  }
  
  .promo-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .promo-content li {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .promo-content button {
    width: 180px;
    height: 44px;
    font-size: 16px;
    margin-top: 15px;
  }
}

.content-section {
  width: 100%;
  max-width: 100%;
  padding: 3px 2px;
  box-sizing: border-box;
}

.policy-block {
  width: 80%;
  margin: 0 auto 20px auto;
  padding: 0 34px 0 0;
}

/* Ensure sections are relative */
.content-section,
.promos-section,
.title-legal {
  position: relative; /* parent for absolute shapes */
}

/* Shapes inside section stay glued to section */
#top-left-shape,
#top-right-shape,
#bottom-right-shape,
.promos-bg-shape,
.promos-left .circle-shape,
.left-side-icon,
#right-side-icon {
  position: absolute; /* relative to their section */
  pointer-events: none;
  z-index: 0;
}
/* Example positions */
#top-left-shape {
  top: 0;
  left: 0;
}
#top-right-shape {
  top: 0;
  right: 0;
}
#bottom-right-shape {
  bottom: 0;
  right: 0;
}
.promos-left .circle-shape {
  left: 0;
  bottom: 0;
  transform: translate(-40%, 50%);
}
.promos-bg-shape {
  right: 0;
  bottom: 0;
  transform: translate(40%, 25%) scale(-1, -1);
}
.parent {
  position: relative;
  overflow: visible; /* important so circle isn't cut off */
}
.circle {
  position: absolute;
  width: 511px;
  height: 654px;
  left: -100px;
  top: 100%; /* Position at bottom of promos section */
  margin-top: -327px; /* Shift up by half height to center between sections */
  z-index: 1000;
  pointer-events: none;
}
/* Make sure promos section and footer have proper positioning */
.promos-section {
  position: relative;
  z-index: 10;
}
.footer-container {
  position: relative;
  z-index: 100;
}
@media (max-width: 1400px) and (min-width: 1201px) {
  .circle {
    width: 411px;
    height: 554px;
    left: -100px;
    top: 100%; 
    margin-top: -327px; 
    z-index: 1000;
    pointer-events: none;
  }
}
html {
  overflow: auto;
  overflow-x: clip;
}
@media (max-width: 1366px) and (min-width: 1001px) and (orientation: portrait){
  body{
    padding-bottom: 22%;
  }
}
@media (min-width: 1500px){
  body{
    padding-bottom: 4%;
  }
}
@media (max-width: 1366px) and (min-width: 1001px) and (orientation: portrait){
  body{
    padding-bottom: 20% !important;
  }
}
@media (max-width: 1366px) and (min-width: 1024px) and (orientation: landscape){
  body{
    padding-bottom: 1% !important;
  }
}
@media (min-width: 1500px){
  body{
    padding-bottom: 4% !important;
  }
}
@media (min-width: 1024px) and (orientation: portrait) {
  body{
    padding-bottom: 25% !important;
  }
  .promos-container {
    gap: 0px !important;
  }
  .circle{
    top: 106%;
    left: -100px;
  }
}
@media screen and (width:1600px) and (height:900px) {

    #d{
      margin-top: -28%;
    }
}
@media  screen and (width :1024px) and (height :768px) and (orientation :landscape) {
  #g, #d {
       
        max-width: 930px;
       
    }
  #d{
    margin-top: -8%;
  }
}

@media  screen and (width :768px) and (height :1024px) and (orientation :portrait) {
.condition-title{
  line-height: 3rem;
  
}
.condition{
  line-height: 2.5rem;
}
.main-p > p, .main-p > li {
        
        line-height: 2.5rem;
       
    }
  #dff{
      line-height: 2.5rem;
  }
  #d{
    margin-bottom: 10%;
  }
  .promos-left{
    margin-bottom: -3%;
  }
  }
@media only screen 
  and (max-width: 896px) 
  and (orientation: landscape) 
  and (max-height: 414px){
    #d {
        align-self: start;
        margin-top: -12%;
    }
    #g, #d {
       
        max-width: 930px;
       
    }
    .promos-container {
    gap: 0px !important;
}
  }

@media  screen and (width :820px) and (height :1180px){
  body{
    padding-bottom: 30% !important;
  }
  .promos-left{
    margin-bottom: -3%;
  } 
  .circle{
    top: 104%;
    left: -155px;
  }

}

@media  screen and (width:1180px) and (height:820px) {
  body {
    padding-bottom: 1% !important;
  }
  #d{
    margin-top: -52%;
  }
  .promos-left {
    width: 87%;
}
      .promos-right .promos-item {
        width: 587px;
        height: 297px;
    }
    .promos-right {
    margin-left: -14%;
      
}
}
@media (min-width: 1920px) and (height: 1080px){
  #d{
    margin-top: -15%;
  }
}
@media  screen and (width:768px) and (height:1024px) {
  body {
    padding-bottom: 84% !important;
}
  .circle{
    top: 106%;
    left: -100px;
  }
      .promos-left {
        margin-bottom: -6%;
    }
}
@media (max-width: 374px) {
  .title-copyright{
    padding: 95px 30px;
  }
  .circle{
    top: 98%;
    left: -211px;
  }
}
@supports (-webkit-touch-callout: none) {
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
  }
}
.footer {
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 1367px)and (max-width: 1600px) {
  #wrapperDesktop {
    max-width: 960px;
}
}

@media (max-width: 1366px) and (min-width: 1001px) and (orientation: portrait){
  body{
    padding-bottom: 20% !important;
  }
}
@media (max-width: 1366px) and (min-width: 1024px) and (orientation: landscape){
  body{
    padding-bottom: 40% !important;
  }
}

@media (min-width: 1500px){
  body{
    padding-bottom: 34% !important;
  }
  
}
@media (min-width: 1601px){
  body{
    padding-bottom: 29% !important;
  }
}
@media (min-width: 1024px) and (orientation: portrait) {
  body{
    padding-bottom: 72% !important;
  }
  .circle{
    top: 105%;
    left: -155px; 
  }
}
@media  screen and (width :820px) and (height :1180px){
  body{
    padding-bottom: 86% !important;
   
  }
  .promos-left{
    margin-bottom: -3%;
  }
  .circle{
    top: 105%;
    left: -155px;
  }

}
@media screen and (max-width: 552px) {
  body{
    padding-bottom: 155% !important;
  }
  .circle{
    top: 100%;
    left: -207px; 
  }
}
@media screen and (max-width: 360px) {
  body {
      padding-bottom: 180% !important;
  }
  .circle{
    top: 100%;
    left: -207px; 
  }
}