/*Define Colors */

:root {
  --navy-blue: #003d5c;
  --sky-blue: #87ceeb;
  --old-gold: #cfae46;
}

	/* Import Fonts */


@font-face {
  font-family: 'Bilya Signature';
  src: url('../Assets/Fonts/BilyaSignature.otf') format('opentype'),
       url('../Assets/Fonts/BilyaSignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

	/* Visually Hidden- Such as H1 Tags and other SEO elements */

.visually-hidden {
  position: absolute;
  left: -9999px;
}


/* --- Custom Scrollbar Styles --- */

/* This targets the scrollbar in WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px; /* You can adjust the width of the scrollbar */
}

/* This targets the track (the background) */
::-webkit-scrollbar-track {
    background: #ccc; /* A light grey track background */
    border-radius: 10px;
}

/* This targets the thumb (the handle you drag) */
::-webkit-scrollbar-thumb {
    background: var(--navy-blue); /* A nice blue, matching your banner's buttons */
    border-radius: 10px;
    border: 2px solid #ccc;
}

/* This changes the thumb's color when you hover over it */
::-webkit-scrollbar-thumb:hover {
  background: #005fa3;
  border: 2px solid #ccc;
}

/* This targets Firefox */
/* It's less customizable but still effective */
body {
    scrollbar-width: thin;          /* Or "auto" or "none" */
    scrollbar-color: var(--navy-blue) #555; /* thumb color / track color */
}

	/* Body */

body {
  padding-top: 150px;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--navy-blue);
  background-color: #f4f9fc;
}

    /* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 150px;
  background-color: rgba(255,255,255,0.6); /* Or your preferred background */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  backdrop-filter: blur(10px);         /* Key for WOW frosted glass */
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* Optional: adds a subtle shadow */
}
    
header img {
  padding: 0 3rem 0 0;
  height:6rem;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.language-selector label img {
      padding: 0;
      margin: 5px 0 0 0;
    max-width: 30px;
    max-height: 20px;
}

header img:hover {
  transform: scale(1.1);
  filter: brightness(1.5);
}
    
.hamburger {
  display: none;
}
   
.nav-menu {
  position: relative; /* Needed for ul's absolute positioning */
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding:0;
  display: flex;
  gap: 1rem;
}
    
.nav-menu li {
  flex-shrink: 0;
}
    
.nav-menu a {
  display: block;
  padding: 0.75em 1em;
  text-decoration: none;
  background-color: #003d5c;
  color: White;
  border-radius: 20px;
  position: relative;
  top: 30px;
  white-space: nowrap;
  box-shadow: 3px 8px 9px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease;
  z-index: 15;
}

.nav-menu a:hover {
  background-color: #005fa3; 
}
 
/* Hide the Home navigation link by default */
#nav-Home {
  display: none;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  top: 40px;
  background-color: #003d5c;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

select {
  padding: 5px 5px;
  font-size: 1rem;
}

.mobile-social-icons {
  display: none;
}

  /* =================================== */
/* Comprehensive Cookie Consent Banner */
/* =================================== */

/* Main Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--navy-blue); /* Light text */
  padding: 1.5rem 6rem;
  z-index: 1000;
  display: none; /* Hidden by default - JS will show it */
  font-size: 1rem;
  background-color: rgba(255,255,255,0.6); /* Or your preferred background */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  backdrop-filter: blur(10px);         /* Key for WOW frosted glass */
  z-index: 1000;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); /* Optional: adds a subtle shadow */
}

ul.contact-icons {
  padding: 0;
}

.cookie-banner-content {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#cookie-consent-message a {
  color: #4da6ff; /* A nice link color */
  text-decoration: underline;
}

/* Button Styling */
.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

#cookie-accept-btn {
  background-color: #28a745; /* Green for accept */
  color: white;
}
#cookie-accept-btn:hover {
  background-color: #218838;
}

#cookie-customize-btn, #cookie-deny-btn {
  background-color: #434343;
  color: white;
}
#cookie-customize-btn:hover, #cookie-deny-btn:hover {
  background-color: #555;
}

/* Customize View Styling */
.cookie-customize-view {
  max-width: 1250px;
  margin: 0 20px;
}
.cookie-customize-view h4 {
  text-align: center;
  font-size:1.6rem;
  margin-top: 2px;
  margin-bottom: 1rem;
}
.cookie-toggle-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.cookie-toggle-group p {
  margin: 2px;
  color: #555;
  font-size: 0.9rem;
}
#cookie-save-prefs-btn {
  margin-top: 1.5rem;
  background-color: var(--navy-blue); /* Blue for save */
  color: white;
  width: 100%;
}
#cookie-save-prefs-btn:hover {
  background-color: #28a745;
}


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

/* For smaller desktops */
@media (max-width: 994px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* For tablets */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 3rem 1rem;
  }
}

/* For mobile phones */
@media (max-width: 600px) {
  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cookie-banner button {
    width: 100%;
  }
}
	/* Footer */


.footer-links a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--old-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--old-gold);
}

.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-icons a {
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--old-gold);
  border-color: var(--old-gold);
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.15);
  box-shadow: 0 0 10px var(--old-gold);
}

/* Optional: add gold stripe on top of footer */
.footer {
  border-top: 4px solid var(--old-gold);
  background-color: #101010;
  color: #ffffff;
  padding: 3rem 1rem 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0 70px;
  max-width: 2000px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a:hover {
  text-decoration: underline;
  font-weight: bold;
  color: var(--old-gold);
}

.footer-section {
  flex: 1 1 200px;
  padding: 0;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--old-gold);
}

/*==============================
  Footer Links
==============================*/

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  font-size: clamp(16px, 22px, 24px);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}


/* ====== SOCIAL ICONS ====== */
.social-icons a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 1rem;
  color: #ccc;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: var(--old-gold);
  border-color: var(--old-gold);
  background-color: rgba(255,255,255,0.1);
}

/* ====== FOOTER BOTTOM ====== */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 2px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #aaa;
}


/* ====== MEDIA QUERIES ====== */

/* Under 1250px */
@media (max-width: 1250px) {
  .footer-container {
    gap: 1.5rem;
  }
}

/* Under 768px */
@media (max-width: 768px) {
   .desktop-social-icons {
  display: none;
}
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0px 0px;
  }
    .mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.8rem;
  }

  .mobile-social-icons a {
    color: #555;
    font-size: 1.5rem;
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--sky-blue);
  }

  .mobile-social-icons a:hover {
    color: var(--old-gold);
    border-color: var(--old-gold);
    background-color: var(--navy-blue);
  }
  .mobile-social-icons {
    
  }

  .mobile-social-icons a {
    
  }
}

/* Under 600px */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .social-icons a {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
   .mobile-social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    padding: 0.5rem 0 0.5rem;
  }

  .mobile-social-icons a {
    font-size: 1.5rem;
    border: none;
    background-color: var(--sky-blue);
    color: #555;
    border-radius: 2rem;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
    transition: all 0.3s ease;
  }

  .nav-menu ul.open {
    align-items: center;
    margin: 0;
    font-size: medium;
  }
}


	/* WhatsApp Chat Button */
.whatsapp-chat {
  display: none;
  position: fixed;
  bottom: 8vh;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 1px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.7);
  transition: transform 0.3s;
}

.whatsapp-chat img {
  width: 45px;
  height: 45px;
  display: block;
}

.whatsapp-icon {
  background: #25D366;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: background 0.3s;
}

.whatsapp-icon:hover {
  background: #1DA851;
  transform: scale(1.3)
}

.chat-head {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  width: 220px;
  text-align: center;
}

.whatsapp-chat.active .chat-head {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-head p {
  font-size: 14px;
  margin: 0 0 10px;
  color: #333;
}

.chat-head-button {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.chat-head-button:hover {
  background-color: #1DA851;
}

/* Desktop header layout fix */
@media (min-width: 1251px) {
.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    top: -30px;
    gap: 1.5rem;
  flex-grow: 1;
  z-index: 1001;
  }

  .nav-menu .desktop-social-icons i {
    color: #555;
  }
  
.nav-menu .desktop-social-icons a {
    background-color: var(--sky-blue);
  	border: 2px #555;
  	transition: transform 0.3s ease-in-out;
  }
  
  .nav-menu .desktop-social-icons a:hover {
  	transform: scale(1.2);
  }
  
  .desktop-social-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding-bottom: 0.3rem;
  }

  .desktop-social-icons a {
    font-size: 0.9rem;
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid var(--navy-blue);
    color: var(--navy-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .desktop-social-icons a:hover {
    color: var(--old-gold);
    border-color: var(--old-gold);
    transform: scale(1.1);
  }
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
  
.nav-menu ul {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  position: relative;
  box-shadow: 3px 8px 9px rgba(0,0,0,0.5);
  background-color: var(--navy-blue);
  color: white;
  right: 50px;
  padding: 0.75em 1em;
  border-radius: 20px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.language-selector {
  position: flex;
  right: 3.5rem;
  top: 30px; /* Reset top */
  box-shadow: 3px 8px 9px rgba(0,0,0,0.5);
}

.hamburger {
  display: none; /* Hide hamburger on desktop */
 }
}

@media (max-width: 1250px) {  
.hamburger {
  position: absolute;
  top: 5rem;
  right: 1.5rem;
  z-index: 1003;
  text-indent: -5px;
  line-height: 18px;
  background: #003d5c;
  color: #ccc;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 60px;      /* Set fixed width */
  height: 50px;     /* Set fixed height */
  display: flex;
  flex-direction: column;
  justify-content: center;
 }
  
  .hamburger:hover {
    background-color: #003d5cbf;
  }
  
header img {
  padding: 1.45rem 0 0 2rem; 
 } 
  
 .hamburger span {
  flex-shrink: 0;
  display: block;
  height: 3px;
  width: 25px;
  background-color: #f4f9fc;
  margin-bottom: 4px;
  transition: all 0.4s ease;
  transform-origin: center;
 }

 .hamburger span:last-child {
  margin-bottom: 0;
 }

	/* Animate to X on .active */
 .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
 }

 .hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
 }

 .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
 }

 .nav-menu ul {
  transition: max-height 0.4s ease, padding 0.2s ease;
  overflow: hidden;
  max-height: 0;
  padding: 0; /* Ensure no visible padding when closed */
  margin: 0;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1003;
 }

 .nav-menu ul.open {
   position: absolute;
  max-height: 750px;
  top: 1.7rem;
  padding: 2rem 2rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin: 0 40px;
  background-color: rgba(255, 255, 255, 0.6); /* Light tint */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1010;
 }
  
 .nav-menu li {
  margin: 0.5rem 1rem;
 }

 .nav-menu a {
  margin: 0 2em;
  top: -2em;
  text-align: center;
 }

  .nav-menu .desktop-social-icons a {
   background-color: var(--sky-blue);
    transition: transform 0.3s ease-in-out;
 }
  
    .nav-menu .desktop-social-icons a:hover {
   transform: scale(1.2);
 }
  
  .nav-menu .desktop-social-icons i {
   color: #555;
 }
  
 header {
  flex-direction: column;
  align-items: stretch;
 }

 .language-selector {
  position: absolute;
  top: 1rem; /* Places it just over the hamburger */
  right: 1.5rem;
  margin-top: 0;
  width: auto;
  justify-content: flex-end;
  background-color: #003d5c;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1002;
 }
  .desktop-social-icons {
   display: flex;
   position: relative;
    padding: 0 1rem 0 1rem;
  }
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-icons a {
    justify-content: center;
  }
}

/*==============================
  Contact Icons (Updated)
==============================*/
.contact-icons li {
  margin-bottom: 0.75rem;
  list-style: none;
}

.contact-icons a {
  font-size: clamp(16px, 22px, 24px);
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0px auto;
  gap: 10px;
  transition: color 0.3s ease-in-out;
}

.contact-icons a i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* Brand-specific icon colors */
.contact-icons a[href^="tel"] i {
  color: #0dcaf0;
}

.contact-icons a[href^="mailto"] i {
  color: #007bff;
}

.contact-icons a[href*="wa.me"] i {
  color: #25D366;
}

/* Hover effects */
.contact-icons a:hover {
  color: #25D366;
}

.contact-icons a:hover i {
  color: #ffffff;
}

/*==============================
  Social Media Icons
==============================*/
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: #ccc;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

/*==============================
  Footer Bottom
==============================*/
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

#footer-text {
  color: #aaa;
}

/*==============================
  Responsive Layout
==============================*/

	/* Media Queries */
@media (max-width: 768px) {
  .nav-menu li {
    margin: 0rem 0.5rem; 
}
  
  /* ===============================
   NAV-MENU SOCIAL ICONS ONLY
   =============================== */

/* Hide by default inside nav */
.nav-menu .desktop-social-icons,
.nav-menu .mobile-social-icons {
  display: none;
}

/* Base styles for those icons */
.nav-menu .desktop-social-icons a,
.nav-menu .mobile-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 0.5rem;
  margin: 0 0.5rem;
  border-radius: 0.25rem;
  background: transparent; /* no box */
  transition: background 0.2s, transform 0.2s;
}

/* Icon colours (font-awesome brand) */
.nav-menu .desktop-social-icons a.facebook,
.nav-menu .mobile-social-icons a.facebook { background-color: #1877F2; }
.nav-menu .desktop-social-icons a.twitter,
.nav-menu .mobile-social-icons a.twitter   { background-color: #1DA1F2; }
.nav-menu .desktop-social-icons a.instagram,
.nav-menu .mobile-social-icons a.instagram { background-color: #E4405F; }
.nav-menu .desktop-social-icons a.linkedin,
.nav-menu .mobile-social-icons a.linkedin  { background-color: #0A66C2; }

/* The white “f” / bird / camera / in on top */
.nav-menu .desktop-social-icons a .fab,
.nav-menu .mobile-social-icons a .fab {
  font-size: 1.25rem;
  color: #fff;
}

/* Hover glow */
.nav-menu .desktop-social-icons a:hover,
.nav-menu .mobile-social-icons a:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Desktop ≥1251px: show inline in the header bar */
@media (min-width:1251px) {
  .nav-menu .desktop-social-icons {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.3rem;
  }
}

/* Tablet ≤1250px: show desktop icons only inside the open menu */
@media (max-width:1250px) {
  .nav-menu .desktop-social-icons { display: none; }
  .nav-menu ul.open .desktop-social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
  }
}

/* Mobile ≤768px: show mobile-icon grid only inside open menu */
@media (max-width:768px) {
  .nav-menu .desktop-social-icons { display: none; }
  .nav-menu .mobile-social-icons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0.5rem;
    padding: 1rem;
  }
  .nav-menu ul.open .mobile-social-icons {
    display: grid;
  }
  .nav-menu .mobile-social-icons a {
    width:100%;
    aspect-ratio:1/1;
  }
  .nav-menu .mobile-social-icons a .fab {
    font-size:1.25rem;
    color: #555;
  }
}

  /* → Make the opened‐menu social containers full-width and spaced */
.nav-menu ul.open .desktop-social-icons,
.nav-menu ul.open .mobile-social-icons {
  display: flex;      /* ensure flex or grid kicks in */
  justify-content: center;
}

/* → Give each icon a little more room so they don’t collide */
.nav-menu ul.open .desktop-social-icons a,
.nav-menu ul.open .mobile-social-icons a {
  margin: 0.2rem;
  max-width: 1.2rem;
  background-color: var(--sky-blue);/* uniform around each icon */
}

@media (max-width:350px) {
  .language-selector{
    scale: 0.8;
    right: 0.8rem;
  }
  .select{
    font-size: 0.8rem;
  }
  .nav-menu a {
    position: static;
  }
  .nav-menu ul.open .mobile-social-icons {
        display: none;
  }

  }
  
  /*
 * CSS Fix for Mobile Cookie Banner
 * Makes the cookie banner scrollable on small screens.
*/

#cookie-consent-banner {
    /* Prevent the banner from being taller than 85% of the screen */
    max-height: 85vh;

    /* These flex properties help the inner content scroll correctly */
    display: flex;
    flex-direction: column;
}

#cookie-consent-banner .cookie-banner-content,
#cookie-consent-banner .cookie-customize-view {
    /* This is the magic part: it makes the content area scrollable if needed */
    overflow-y: auto;

    /* This makes scrolling feel smoother on iOS devices */
    -webkit-overflow-scrolling: touch;
}