
/* @font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Regular.woff2') format('woff2'),
       url('/fonts/OpenSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

/* @font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Bold.woff2') format('woff2'),
       url('/fonts/OpenSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */

html {
  font-size: 15px; /* or 14px, 90%, etc. Adjust as you wish */
  scroll-behavior: smooth;
}

/* Reduce ALL text size on small screens */
@media (max-width: 767.98px) {
  html {
    font-size: 12px; /* Significantly smaller for mobile */
  }

  /* Optional: further scale down large headings/titles */
  h1, .promo-title, .brand-title {
    font-size: 1.5rem;
  }
  h2, .brand-sub {
    font-size: 1.15rem ;
  }
  h3 {
    font-size: 1rem;
  }
  h4, p, li, .nav-link, .btn, .btn-lang {
    font-size: 1.2rem;
  }
}


*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body
{
   font-family: 'Open Sans', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;   
    
}


/* ========================================================================
   -------------- START OF STYLES FOR THE NEW LANGUAGE FLAG SELECTOR----------------
   ======================================================================== */


/* Top bar with language selector - NEW */
.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    min-height: 34px;
}

/* The main container for the buttons */
.language-selector {
    display: flex;
    align-items: center; /* Vertically align items */
    gap: 12px; /* Space between the label and the buttons */
    position: relative;
    
}

/* Optional: The "Language:" text label */
.language-selector p {
    margin: 0;
    font-weight: 600;
    color: #333; /* Adjust color to fit your site's theme */
}

/* --- Flag Button --- */
/* The circular flag button itself */
.lang-flag-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%; /* Makes the button a perfect circle */
    box-sizing: border-box;
    /* This creates the "concentric circle" effect */
    border: 2px solid #e0e0e0; /* A light grey outer border */
    padding: 2px; /* Creates space between the outer border and the flag */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fafaff 60%, #f6f8fc 100%);
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(60,50,110,0.08);
    
    /* Smooth transitions for all effects */
    transition: transform 0.22s cubic-bezier(.55,.06,.68,.19), box-shadow 0.18s, border-color 0.18s, background 0.18s;
    
    position: relative;
    z-index: 1;
        
}


/* The flag image inside the button */
.lang-flag-btn img {
    width: 80%;
    height: 80%;
    border-radius: 50%; /* Makes the flag image circular */
    object-fit: cover; /* Ensures the flag fills the circle without distortion */
    display: block;
    box-shadow: 0 0 0 1px #fff;
    pointer-events: none;
    transition: filter 0.2s;
}

.lang-flag-btn:focus {
  outline: 2px solid #3a7bd5;
  outline-offset: 2px;
}

/* --- Hover & Focus Animation --- */
.lang-flag-btn:hover,
.lang-flag-btn:focus {
    transform: scale(1.16) translateY(-1px);
    border-color: #3a7bd5;
    background: linear-gradient(135deg, #e2e6ff 70%, #d2f1fc 100%);
    box-shadow: 0 2px 8px rgba(58,123,213, 0.11);
}

.lang-flag-btn:active {
    transform: scale(1.06);
    box-shadow: 0 1px 6px rgba(95,23,130,0.09);
}

/* --- Active Button --- */
.lang-flag-btn.active {
    border-color: #5f1782;
    box-shadow: 0 0 0 3px rgba(95, 23, 130, 0.18);
    background: linear-gradient(135deg, #ede1fc 60%, #f0f7ff 100%);
    transform: scale(1.18);
}


/* --- Ripple Animation (on click) --- */
.lang-flag-btn:after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: rgba(95,23,130,0.13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.29s ease, height 0.29s ease, opacity 0.29s;
    opacity: 0;
}
.lang-flag-btn:active:after {
    width: 34px; height: 34px;
    opacity: 1;
    transition: 0s;
}

/* --- Responsive --- */
@media (max-width: 700px) {
    .top-bar {
        padding: 8px 10px;
    }
    .lang-flag-btn {
        width: 22px;
        height: 22px;
    }
    .lang-flag-btn:active:after {
        width: 24px; height: 24px;
    }
    .language-selector {
        gap: 7px;
    }
}
@media (max-width: 480px) {
    .top-bar {
        min-height: 26px;
        padding: 7px 4px;
    }
    .lang-flag-btn {
        width: 18px;
        height: 18px;
    }
    .lang-flag-btn:active:after {
        width: 19px; height: 19px;
    }
    .language-selector {
        gap: 4px;
    }
}


/* ========================================================================
   --------------END OF STYLES FOR THE NEW LANGUAGE FLAG SELECTOR----------------
   ======================================================================== */



h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }

#nav-bar{
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar{
    background-image: linear-gradient(to right, #5f1782, #3a7bd5);
    padding: 0.5rem 1rem;
}
.navbar-brand img{
    height: 50px;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.navbar-nav {
    align-items: center;
    background: linear-gradient(to right, #4f47a3, #3a80b6);
}

.navbar-nav li{
    padding: 0 5px;
    white-space: nowrap;
}
.navbar-nav li a{
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    font-size: 0.8rem;
    padding: 6px 10px;
    transition: all 0.3s ease;
}
.navbar-nav li a:hover {
    transform: translateY(-2px);
}
    

.fa-bars{
    color: #fff;
    font-size: 30px;
}
.navbar-toggler{
    outline: none;
    border: none;
    padding: 0.5rem;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    margin: 0;
    /* This gradient is an approximation of your image */
    background: linear-gradient(to right, #4f47a3, #3a80b6);
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-cta {
    background-color: white;
    color: #4f47a3;
    border-radius: 8px;
    padding: 8px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 5px;
    
}

/* Hover effect to make the button more interactive */
.contact-cta:hover {
   background-image: linear-gradient(to right, #5f1782, #3a7bd5);/* Slightly different background on hover */
    color: springgreen !important; /* Change text color on hover */
    transform: translateY(-2px); /* Lifts the button slightly */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* A more pronounced shadow */
}

/*================ Start Annimation Caroussel =================================== */

/* CTA Carousel Text */
.cta-carousel-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  background: linear-gradient(to right, green, #f9d423);
  padding: 6px 12px;
  border-radius: 0;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: pulse 1.5s infinite;
  display: inline-block;
  text-align: center;
}

/* Pulse effect */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/*  Mobile banner styling */
#ctaMobileBanner {
  background: linear-gradient(to right, #5f1782, #3a7bd5);
  text-align: center;
  padding: 8px 0;
}

#ctaMobileBanner .cta-carousel-text {
  font-size: 0.85rem;
  padding: 5px 10px;
  white-space: normal;
  line-height: 1.3;
}
/*================ END  Annimation Caroussel =================================== */


/*------------------------------------- Professional Quote Button-------------------------------------------- */

  /* Style de base du bouton */
.btn-quote {
  background-color: white;
  color: #4f47a3;
  border-radius: 8px;
  padding: 8px 20px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 5px;
  white-space: nowrap;
}

/* Effet au survol */
.btn-quote:hover {
  background-image: linear-gradient(to right, #5f1782, #3a7bd5);/* Slightly different background on hover */
  color: springgreen !important; /* Change text color on hover */
  transform: translateY(-2px); /* Lifts the button slightly */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* A more pronounced shadow */
}

/* Responsive: pleine largeur sur petits écrans */
/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .navbar-nav li a {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .contact-cta, .btn-quote {
        padding: 8px 15px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 10px 0;
    }
    
    .navbar-nav li {
        padding: 5px 0;
    }
    
    .navbar-nav li a {
        text-align: left;
        padding: 8px 15px;
    }
    
    .contact-cta {
        display: inline-block;
        width: auto;
        margin: 5px 15px;
    }
    
    .btn-quote {
        margin: 5px 15px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 40px;
    }
}




 /* <!------------------------ banner section ----------------> */

#home{
    background-image: linear-gradient(to right, #5f1782, #3a7bd5);
    color: #fff;
    padding-top: 5%;
}

.promo-title{
    font-size:  2rem;
    font-weight: 600;
    margin-top: 100px;
    color: white;
}

body{
    background-image: linear-gradient(to right, #5f1782, #3a7bd5);
    color: #fff;
    /* padding-top: 5%; */
}
.promo-title{
    font-size:  2.5rem;
    font-weight: 600;
    margin-top: 100px;
    color: white;
}
/* .play-btn{
    width: 45px;
    margin: 20px;
} */
#home a{
    color: #fff;
    text-decoration: none;
}
.bottom-img{
    width: 100%;
}
/* .play-btn{
    width: 45px;
    margin: 20px
} */
#home .btn-primary {
    box-shadow: none;
    padding: 8px 25px;
    border-radius:8px;
    /* background-image: linear-gradient(to right, #5f1782, #3a7bd5); */
    border: none;
}

#home .btn-primary:hover {
    background-image: linear-gradient(to right, #3a7bd5, #5f1782);
}
.lead{
    font-size: 0.5rem;
    font-weight: 300;
}
.enhanced-image {
    opacity: 0.75; /* Transparence plus forte */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); /* Ombre plus marquée */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.enhanced-image:hover {
    opacity: 1;
    transform: scale(1.03); /* Zoom doux au survol */
}

.styled-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
}

.styled-image:hover {
    opacity: 1;
    transform: scale(1.03);
}

/* <!------------------------ Divider section ----------------> */

.wave-separator {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -5px;
    overflow: hidden;
    background: transparent;
    line-height: 0;
    z-index: 1;
}

.editorial {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

/* Optionaler Parallax-Effekt durch leichtes Verschieben */
.parallax1 {
    animation: moveWave 10s linear infinite;
}
.parallax2 {
    animation: moveWave 15s linear infinite;
}
.parallax3 {
    animation: moveWave 20s linear infinite;
}
.parallax4 {
    animation: moveWave 25s linear infinite;
}

@keyframes moveWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* ------------------ Services Section Styling ---------------------------- */

#services {
    /* background-color: #4a148c; */
    padding-top: 50px; /* Add padding to account for wave */
    color: white; /* If your services section has light text */
    position: relative;
    z-index: 1;
}

.title h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px; /* Space between "WHAT WE OFFER" and the services */
}

.services {
    padding: 20px;
    margin-bottom: 20px; /* Adds space between rows on mobile */
    transition: transform 0.3s;
}

.services:hover {
    transform: translateY(-10px); /* Lifts the service box on hover */
}

/* This is the key part for your icons */
.service-img {
    width: 70px; /* Sets a consistent width for all icons */
    height: 70px; /* Sets a consistent height */
    margin-bottom: 20px; /* Creates space between the icon and the h4 title */
}

.service-img1 {
    width: 70px; /* Sets a consistent width for all icons */
    height: 70px; /* Sets a consistent height */
    margin-bottom: 20px; /* Creates space between the icon and the h4 title */
    background-color: antiquewhite;
    border-radius: 50px;
}

.services h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

#services .btn-primary {
    /* Space above the "ALL SERVICES" button */
    box-shadow: none;
    padding: 8px 25px;
    border-radius:8px;
    margin-bottom: 60px;
    /* background-image: linear-gradient(to right, #5f1782, #3a7bd5); */
    border: none;
}

#services .btn-primary:hover {
    background-image: linear-gradient(to right, #3a7bd5, #5f1782);
}


/* The banner section needs to be a positioning container */
#home {
    position: relative;
    background: linear-gradient(to right, #6a11cb, #2575fc); /* Votre dégradé pour la bannière */
    color: #fff;
    padding-bottom: 150px;
    /* Remove any bottom padding if you have it, the wave creates the separation */
    
}

body
{
  margin:0;
  padding:0;
  background-color:#03396c;
}

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index:5;
  bottom:0;
  position:absolute;
  left:0px;
  float:left;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
}

.parallax1 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax2 > use {
  animation: move-forever2 8s linear infinite;
}

.parallax2 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax3 > use {
  animation: move-forever3 6s linear infinite;
}

.parallax3 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax4 > use {
  animation: move-forever4 4s linear infinite;
}

.parallax4 > use:nth-child(1) {
  animation-delay: -2s;
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.title {
  position: relative;
  text-align: center;
  margin-bottom: 2.2em;
}


  
  /*-------------------------------------------- Carousel Styling------------------------------------------- */
  .carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 97, 193, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .btn-quote {
      padding: 10px 20px;
      font-size: 14px;
    }
    
    .services {
      margin-bottom: 30px;
    }
    
    .carousel-control-prev, .carousel-control-next {
      width: 30px;
      height: 30px;
    }
  }


   /*----------------------------- About Us section -----------------------------------*/


#about-us {
    padding: 80px 0;
    background: linear-gradient(to right, #4a148c, #2575fc);
    color: #fff;
    overflow: hidden; /* Prevents animations from showing scrollbars */
}

/* Re-using the title style for consistency */



.abaout-us {
    /* Adds a border to the left of the content */
    border-left: 4px solid #fff;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    
    /* Animation properties */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
}


.about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* --- Custom Styled List --- */
.about-content ul {
    list-style: none; /* Removes the default black dots */
    padding-left: 0;
}

.about-content ul li {
    margin-bottom: 15px;
    font-size: 17px;
    position: relative;
    padding-left: 30px; /* Creates space for the custom icon */
}

/* This creates the custom checkmark icon */
.about-content ul li::before {
    content: '✓'; /* You can use other icons like '✔' or '+' */
    position: absolute;
    left: 0;
    top: 0;
    color: #00e676; /* A bright, positive color like green */
    font-weight: bold;
    font-size: 20px;
}

.about-content .btn-primary {
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px; /* Gives it a modern "pill" shape */
    transition: all 0.3s ease;
}

.about-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Animations --- */
#about-us .about-image {
  border-radius: 18px;
  box-shadow: 0 12px 40px 0 rgba(63, 81, 181, 0.25), 0 0 0 4px rgba(90,23,130,0.06);
  background: rgba(255,255,255,0.05);
  transition:
    transform 0.7s cubic-bezier(.23,1.19,.32,1),
    box-shadow 0.6s cubic-bezier(.23,1.19,.32,1),
    filter 0.5s;
  animation: aboutImageEntrance 1s cubic-bezier(.68,-0.55,.27,1.55) 0.3s backwards, aboutImageFloat 3.5s ease-in-out 1.3s infinite alternate;
  filter: brightness(0.98) saturate(1.15) drop-shadow(0 0 8px #fff4);
}
#about-us .about-image:hover {
  transform: scale(1.10) rotate(-3deg) translateY(-10px);
  box-shadow: 0 24px 60px 0 rgba(90,23,130,0.19), 0 0 0 8px rgba(63,81,181,0.07);
  filter: brightness(1.06) saturate(1.25) drop-shadow(0 0 14px #fff8);
}

/* Keyframes for entrance + floating effect */
@keyframes aboutImageEntrance {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(60px) rotate(12deg);
    filter: blur(8px) brightness(0.7);
  }
  80% {
    opacity: 1;
    transform: scale(1.07) translateY(-12px) rotate(-6deg);
    filter: blur(0.5px) brightness(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
    filter: blur(0) brightness(1);
  }
}
@keyframes aboutImageFloat {
  0% { transform: scale(1) translateY(0) rotate(0deg);}
  40% { transform: scale(1.025) translateY(-5px) rotate(-1deg);}
  60% { transform: scale(1.02) translateY(8px) rotate(2deg);}
  100% { transform: scale(1.01) translateY(-4px) rotate(-2deg);}
}

/* Add a glow ring behind the image with a pseudo-element */
#about-us .about-image {
  position: relative;
  z-index: 1;
}
#about-us .about-image::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 90%; height: 90%;
  transform: translate(-50%, -50%) scale(1.1);
  border-radius: 50%;
  background: radial-gradient(rgba(90,23,130,0.18), transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(12px);
  animation: aboutGlowPulse 3.8s ease-in-out infinite alternate;
}
@keyframes aboutGlowPulse {
  0%    { opacity: 0.7; transform: translate(-50%,-50%) scale(1.1);}
  55%   { opacity: 1;   transform: translate(-50%,-50%) scale(1.18);}
  100%  { opacity: 0.8; transform: translate(-50%,-50%) scale(1.07);}
}

/* Animate list items to slide/fade in with delay */
.about-content ul li {
  opacity: 0;
  transform: translateX(-40px) scale(0.96);
  animation: aboutListItemIn 0.7s cubic-bezier(.23,1.19,.32,1) forwards;
}
.about-content ul li:nth-child(1) { animation-delay: 0.15s;}
.about-content ul li:nth-child(2) { animation-delay: 0.28s;}
.about-content ul li:nth-child(3) { animation-delay: 0.41s;}
.about-content ul li:nth-child(4) { animation-delay: 0.54s;}
.about-content ul li:nth-child(5) { animation-delay: 0.67s;}
.about-content ul li:nth-child(6) { animation-delay: 0.80s;}
@keyframes aboutListItemIn {
  from { opacity: 0; transform: translateX(-40px) scale(0.96);}
  70%  { opacity: 1; transform: translateX(8px) scale(1.04);}
  to   { opacity: 1; transform: translateX(0) scale(1);}
}

/* Animate the section title with a slide-down and gentle bounce */
#about-us .title {
  animation: aboutTitleIn 1.1s cubic-bezier(.68,-0.55,.27,1.55) 0.1s backwards;
}
@keyframes aboutTitleIn {
  0%   { opacity: 0; transform: translateY(-60px) scale(0.98);}
  55%  { opacity: 1; transform: translateY(12px) scale(1.06);}
  100% { opacity: 1; transform: translateY(0) scale(1);}
}

/* Animate the subtitle */
.about-content h2.about-title {
  animation: aboutSubtitleIn 1.1s cubic-bezier(.68,-0.55,.27,1.55) 0.28s backwards;
}
@keyframes aboutSubtitleIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96);}
  60%  { opacity: 0.9; transform: translateY(-10px) scale(1.05);}
  to   { opacity: 1; transform: translateY(0) scale(1);}
}

/* Button pop-in */  
#about-us .btn-primary {
   box-shadow: none;
    padding: 8px 25px;
    border-radius:8px;
    margin-bottom: 20px;
    /* background-image: linear-gradient(to right, #5f1782, #3a7bd5); */
    border: none;
    /* animation: aboutBtnPopIn 1.1s cubic-bezier(.68,-0.55,.27,1.55) 0.55s backwards; */
  
}

#about-us .btn-primary:hover{
     background-image: linear-gradient(to right, #3a7bd5, #5f1782);
}

@keyframes aboutBtnPopIn {
  0%   { opacity: 0; transform: scale(0.7);}
  50%  { opacity: 1; transform: scale(1.08);}
  100% { opacity: 1; transform: scale(1);}
}

/* Responsive: make sure animation/overflow works on mobile */
@media (max-width: 767px) {
  #about-us .about-image { margin-bottom: 30px; }
  #about-us .about-image::after { width: 140%; height: 140%; }
}


/* -----------------------Animationen einbinden (optional)-------------------------------------------- */


.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}


.wave-divider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    transform: rotate(180deg); /* falls du die Welle andersrum willst, entferne das */
}


                 /* ----------------------------Testimonials section--------------------- */


#testimonials {
    padding: 80px 0;
    background: linear-gradient(to right, #4a148c, #2575fc);
    color: #fff;
    overflow: hidden; /* Prevents animations from showing scrollbars */
}

#testimonials .title {
    font-weight: 600;
    margin-bottom: 60px;
    position: relative; /* This is essential for positioning the ::before pseudo-element */
    padding: 30px 0; /* Adds some vertical space to prevent the bars from being cut off */
    text-align: center;
}

/* This will create the strikethrough line over the text */

/* This will create the shorter, thicker bar below the text */


.testimonials {
    border-left: 4px solid #fff;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    
    /* Animation properties */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
}
.testimonials img{
    max-width: 50px;
    border-radius: 50%;
    margin: 0 10px;
}
.user-details{
    display: inline-block;
    font-size: 12px;
}


.testimonials img {
    max-width: 50px;
    border-radius: 50%;
    margin: 0 10px;
    transform: scale(0);
    animation: scaleUp 0.5s forwards 0.8s;
}

.user-details {
    display: inline-block;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeInRight 0.5s forwards 1s;
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growBorder {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add staggered animation delays */
.testimonials:nth-child(1) { --animation-order: 1; }
.testimonials:nth-child(2) { --animation-order: 2; }
.testimonials:nth-child(3) { --animation-order: 3; }
.testimonials:nth-child(4) { --animation-order: 4; }


/* -------------------------Social Media section ----------------------------------- */

/* Original Styles - No changes needed here */
#social-media {
    background-color: #f8f9fa;
    padding: 100px 0;
    margin: 0px 0;
    text-align: center; /* Center align the content */
    /* Adding position relative for the wave */
    position: relative;
}

#social-media p {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    
}

/* --- ADDITIONS FOR RESPONSIVENESS --- */
.social-icons {
    display: flex;
    justify-content: center; /* Horizontally center the icons */
    flex-wrap: wrap;         /* Allow icons to wrap to the next line */
    gap: 20px;               /* Add space between icons */
    padding: 0 15px;         /* Add some padding to avoid touching screen edges */
}
/* --- END OF ADDITIONS --- */

.social-icons img {
    width: 60px;
    transition: transform 0.5s ease-in-out;
}

.social-icons a {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.social-icons.is-visible a:nth-child(1) { transition-delay: 0.1s; }
.social-icons.is-visible a:nth-child(2) { transition-delay: 0.2s; }
.social-icons.is-visible a:nth-child(3) { transition-delay: 0.3s; }
.social-icons.is-visible a:nth-child(4) { transition-delay: 0.4s; }
.social-icons.is-visible a:nth-child(5) { transition-delay: 0.5s; }
.social-icons.is-visible a:nth-child(6) { transition-delay: 0.6s; }

/* The visible state that JS will trigger */
.social-icons.is-visible a {
    opacity: 1;
    transform: translateY(0);
}

.social-icons a:hover img {
    transform: scale(1.1) translateY(-10px);
    filter: brightness(1.1);
}

.animated-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.animated-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px; /* Adjust height of the wave */
}

.animated-wave path {
    fill: url(#footer-gradient);
}


/* For tablets and smaller devices */
@media (max-width: 768px) {
    #social-media {
        padding: 80px 0; /* Reduce vertical padding */
    }

    #social-media p {
        font-size: 26px; /* Slightly smaller title */
        margin-bottom: 30px;
    }

    .social-icons img {
        width: 45px; /* Make icons a bit smaller */
    }

    .social-icons {
        gap: 10px; /* Reduce space between icons */
    }
}



/*----------------------------- FAQ section---------------------------- */



/* ========================
   Creative FAQ Section
   ======================== */

#faq {
  padding: 100px 0;
  background-image: linear-gradient(90deg, #3a7bd5, #5f1782);
  color: #fff;
}

/* Title */
#faq .title {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 10px;
}


/* Accordion container */
#faq .faq-accordion {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

/* Accordion Item */
#faq .accordion-item {
  border-radius: 10px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 2px 12px rgba(63, 81, 181, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
#faq .accordion-item:focus-within {
  box-shadow: 0 2px 24px 0 rgba(63,81,181,0.18);
}

/* Accordion Header Button */
#faq .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 7px 15px;
  font-size: 1.18em;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: background 0.25s;
  text-align: left;
}
#faq .accordion-header:hover,
#faq .accordion-header:focus {
  background: rgba(90, 23, 130, 0.15);
}
#faq .accordion-question {
  flex: 1;
  text-align: left;
}

/* Icon */
#faq .accordion-icon {
  font-size: 1.9em;
  font-weight: bold;
  color: #00e676; 
  transition: transform 0.35s cubic-bezier(.87,-.41,.19,1.44), color 0.3s;
}
#faq .accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  color: #fff;
}

/* Accordion Body */
#faq .accordion-body {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1em;
  line-height: 1.75;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.64,-0.02,.17,1.42), padding 0.15s;
}
#faq .accordion-body[hidden] {
  display: block;
  max-height: 0;
  padding-bottom: 0;
  padding-top: 0;
}
#faq .accordion-header[aria-expanded="true"] + .accordion-body {
  max-height: 400px;
  padding-bottom: 22px;
  padding-top: 5px;
}

/* Responsive */
@media (max-width: 700px) {
  #faq .title { font-size: 1.5em; }
  #faq .faq-accordion { max-width: 98vw; }
  #faq .accordion-header, #faq .accordion-body { padding-left: 14px; padding-right: 14px; }
}




/* ========================================================================
   --------------START OF STYLES FOR Footer section------------------
/* ========================================================================*/


#contact {
    background: linear-gradient(to right, #4a148c, #2575fc);
    color: #e0e0e0;
    padding: 70px 0 25px 0;
    position: relative;
    margin-top: 30px;
    width: 100%;
    
    border-radius: 15px;
    
    /* overflow: hidden; */
}
.footer-container {
    padding: 0 15px;
}

body::before {
    content: '';
    display: none;
    width: 0; height: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='footer-gradient' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%234a148c;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%232575fc;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.footer-box {
    /* Animation setup for fade-in effect */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* This class will be added by JS to trigger the animation */
.footer-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay */
.footer-box.is-visible:nth-child(2) { transition-delay: 0.2s; }
.footer-box.is-visible:nth-child(3) { transition-delay: 0.4s; }


.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.tagline {
    font-style: italic;
    color: #b3b3b3;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 15px;
}

.footer-box h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

/* Decorative underline for headings */
.footer-box h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #00e676; /* A vibrant accent color */
}

/* --- Contact Item Styling (Key Part) --- */
.contact-item {
    display: flex; /* This is the magic! */
    align-items: flex-start; /* This vertically centers the icon and text */
    margin-bottom: 15px;
    color: #fff;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px; /* Space between icon and text */
    width: 24px; /* Ensures consistent alignment */
    text-align: center;
    color: #fff; /* Icons are now white as requested */
    flex-shrink: 0;
    margin-top: 2px;
}


.contact-text {
    line-height: 1.5;
    font-size: 15px;
}

.footer-social {
    margin-top: 20px;
}

/* --- Social Icons Styling --- */
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #00e676; /* Same accent color on hover */
    transform: translateY(-3px);
}

/* --- Newsletter Form Styling --- */

.newsletter-form {
    display: flex;
    margin-top: 15px;
    flex-wrap: nowrap;
}

.newsletter-form .form-control {
    flex-grow: 1;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
    min-width: 0px;
}

.newsletter-form .form-control::placeholder { color: #b3b3b3; }
.newsletter-form .form-control:focus { box-shadow: none; background: white}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    background-color: #00e676;
    border: none;
    padding: 12px 20px;
    white-space: nowrap;
}


#contact hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.copyright {
    text-align: center;
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-legal-links {
    margin-top: 15px;
}
        
.footer-legal-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
}
        
.footer-legal-link:hover {
    color: #fff;
    text-decoration: underline;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-box {
        text-align: center;
        margin-bottom: 30px;
        padding: 15px 25px; /* Increased padding for better spacing */
    }
    
    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    #contact {
        padding: 60px 0 25px 0;
    }

    
    /* Equal spacing between columns */
    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; /* Creates equal space around columns */
        margin: 0 -10px; /* Compensate for column padding */
    }
    
    .col-md-4 {
        flex: 0 0 calc(33.333% - 20px); /* Equal width with spacing */
        max-width: calc(33.333% - 20px); /* Equal width with spacing */
        margin: 0 10px; /* Space between columns */
    }

}

@media (max-width: 768px) {
    .newsletter-form {
        /* position: relative; */
        display: flex;
        align-items: stretch;
        width: 100%;
    }
    
    .newsletter-form .form-control {
        border-radius: 50px 0 0 50px;
        width: 100%;
        margin: 0;
    }
    
    .newsletter-form .btn {
        border-radius: 0 50px 50px 0; /* arrondi seulement à droite */
        padding: 0 20px;
        width: auto;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-box {
        padding: 15px;
    }

    /* Single column on small screens */
    .col-md-4 {
        flex: 0 0 calc(100% - 20px); /* Full width with spacing */
        max-width: calc(100% - 20px); /* Full width with spacing */
    }
}

@media (max-width: 576px) {
    .footer-box h3 {
        font-size: 16px;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
    
    .contact-item i {
        margin-right: 12px;
        margin-bottom: 0px;
    }
    .footer-box {
        padding: 15px 10px;
        margin-bottom: 20px;
    }
    
    /* Remove lateral margins on very small screens */
    .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    }
}


/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    .footer-box {
        text-align: center;
        margin-bottom: 40px;
    }
    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%); /* Center the underline on mobile */
    }
    .contact-item {
        justify-content: center; /* Center contact items on mobile */
    }
}

/* ========================================================================
   --------------END OF STYLES FOR Footer section------------------
/* ========================================================================




/* ========================================================================
   --------------START OF STYLES FOR DSGVO & Datenschutzerklärung MODAL------------------
   ======================================================================== */

/* --- DSGVO & Datenschutzerklärung Modal Professional Styling --- */
.dsgvo-section, .datenschutz-section {
    background: linear-gradient(130deg, #f3f7fa 0% , #eaf0fb 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(52, 97, 193, 0.18), 0 2px 8px rgba(244, 97, 193, 0.13);
    padding: 2.5rem 2.2rem;
    font-size: 1.13rem;
    color: #28335a;
    position: relative;
    border: 1px solid #dee7f3;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.dsgvo-section::before,
.datenschutz-section::before {
    content: "";
    display: block;
    position: absolute;
    left: 32px;
    top: -14px;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #f461c1 0%, #3461c1 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.dsgvo-section h5,
.datenschutz-section h5 {
    color: #3461c1;
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 8px;
    border-left: 5px solid #f461c1;
}

.dsgvo-section p,
.datenschutz-section p {
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: #28335a;
}

.dsgvo-section a,
.datenschutz-section a {
    color: #f461c1;
    text-decoration: underline;
    transition: color 0.2s;
}
.dsgvo-section a:hover,
.datenschutz-section a:hover,
.dsgvo-section a:focus,
.datenschutz-section a:focus {
    color: #3461c1;
    background: #f3f7fa;
    text-decoration: none;
    border-radius: 4px;
}

.modal-header {
    border-bottom: none;
    background: transparent;
    padding-bottom: 0;
}
.modal-title {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

.modal-content {
    border: none;
    box-shadow: 0 8px 32px rgba(52, 97, 193, 0.18), 0 2px 8px rgba(244, 97, 193, 0.13);
}
.btn-close {
    background: linear-gradient(135deg, #f461c1 30%, #3461c1 100%);
    border-radius: 50%;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .dsgvo-section, .datenschutz-section {
        padding: 1.1rem 0.7rem;
        font-size: 1rem;
    }
    .dsgvo-section::before,
    .datenschutz-section::before {
        left: 14px;
        width: 32px;
    }
    .dsgvo-section h5,
    .datenschutz-section h5 {
        font-size: 1.35rem;
        padding-left: 5px;
        border-left-width: 3px;
        margin-bottom: 0.9rem;
    }
}



/* START OF Impressum Modal Styling */
.impressum-section {
    background: linear-gradient(130deg, #f3f7fa 0%, #eaf0fb 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(52, 97, 193, 0.18), 0 2px 8px rgba(244, 97, 193, 0.13);
    padding: 2.5rem 2.2rem;
    font-size: 1.13rem;
    color: #28335a;
    position: relative;
    border: 1px solid #dee7f3;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.impressum-section::before {
    content: "";
    display: block;
    position: absolute;
    left: 32px;
    top: -14px;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #f461c1 0%, #3461c1 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.impressum-section h5 {
    color: #3461c1;
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 8px;
    border-left: 5px solid #f461c1;
}

.impressum-section p {
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: #28335a;
}

.impressum-section a {
    color: #f461c1;
    text-decoration: underline;
    transition: color 0.2s;
}

.impressum-section a:hover,
.impressum-section a:focus {
    color: #3461c1;
    background: #f3f7fa;
    text-decoration: none;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .impressum-section {
        padding: 1.1rem 0.7rem;
        font-size: 1rem;
    }
    
    .impressum-section::before {
        left: 14px;
        width: 32px;
    }
    
    .impressum-section h5 {
        font-size: 1.35rem;
        padding-left: 5px;
        border-left-width: 3px;
        margin-bottom: 0.9rem;
    }
}

/* END OF Impressum Modal Styling */




/* ========================================================================
   --------------START OF STYLES FOR THE NEW LANGUAGE FLAG SELECTOR----------------
   ======================================================================== */

/* The main container for the buttons */
.language-selector {
    display: flex;
    align-items: center; /* Vertically align items */
    gap: 12px; /* Space between the label and the buttons */
    padding: 10px; /* Add some spacing around the component */
    font-family: Arial, sans-serif;
}

/* Optional: The "Language:" text label */
.language-selector p {
    margin: 0;
    font-weight: 600;
    color: #333; /* Adjust color to fit your site's theme */
}

/* The circular flag button itself */
.lang-flag-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Makes the button a perfect circle */
    
    /* This creates the "concentric circle" effect */
    border: 2px solid #e0e0e0; /* A light grey outer border */
    padding: 3px; /* Creates space between the outer border and the flag */
    
    background-color: #fff;
    cursor: pointer;
    position: relative;
    
    /* Smooth transitions for all effects */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* The flag image inside the button */
.lang-flag-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Makes the flag image circular */
    object-fit: cover; /* Ensures the flag fills the circle without distortion */
    display: block;
}

/* --- Interactive States --- */

/* Hover effect for any flag button */
.lang-flag-btn:hover {
    transform: scale(1.1) translateY(-2px); /* Lifts and enlarges the button */
    border-color: #3a7bd5; /* Highlight with your primary color */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Add a subtle shadow */
}

/* Styling for the currently active language button */
.lang-flag-btn.active {
    border-color: #5f1782; /* Use a distinct color for the active state */
    box-shadow: 0 0 0 3px rgba(95, 23, 130, 0.4); /* Creates a glow effect */
}

/* The active button should also be slightly larger */
.lang-flag-btn.active {
    transform: scale(1.1);
}


/* ========================================================================
   --------------END OF STYLES FOR THE NEW LANGUAGE FLAG SELECTOR----------------
   ======================================================================== */


/* ============================================================================================
       ---------------------------COOKIE CONSENT STYLES----------------------------------------
    =========================================================================================== */

   /* =================================
       ANIMATED COOKIE CONSENT STYLES
    ================================= */
    
    /* Keyframe animation for the icon */
    @keyframes cookie-spin {
        0% { transform: rotate(0deg); }
        25% { transform: rotate(-20deg); }
        50% { transform: rotate(0deg); }
        75% { transform: rotate(20deg); }
        100% { transform: rotate(0deg); }
    }

    /* Cookie Banner */
/* Cookie Banner */
.cookie-consent-container {
        /* Positioning in the bottom-right corner */
        position: fixed;
        bottom: 20px;
        left: 50%;
        width: 90%;
        max-width: 800px; /* Controls the box width */
        display: none;
        /* Styling */
        background-color: #fff;
        color: #333;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        z-index: 1000;

        /* --- Initial Animation State (Hidden) --- */
        opacity: 0;
        transform: translateX(calc(100% + 50px)); /* Start off-screen to the right */
        transition: opacity 0.5s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Dynamic bounce effect */
    }

    .cookie-consent-container.active {
        /* --- Visible Animation State --- */
        opacity: 1;
        transform: translateX(0); /* Slide into view */
        display: flex;
        flex-direction: column;
    }

    .cookie-content-wrapper {
        display: flex;
        align-items: flex-start; /* Align items to the top */
        gap: 20px;
        margin-bottom: 20px;
    }

    .cookie-icon i {
        font-size: 50px;
        color: #007BFF;
        animation: cookie-spin 4s ease-in-out infinite; /* Apply the subtle spin animation */
        animation-delay: 1s; /* Start animation after a second */
    }

    .cookie-text-content h3 {
        margin: 0 0 10px 0;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .cookie-text-content p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
    }

    .cookie-text-content a {
        color: #007BFF;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 2px solid transparent;
        transition: border-bottom 0.3s;
    }

    .cookie-text-content a:hover {
        border-bottom: 2px solid #007BFF;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 10px;
        justify-content: flex-end; /* Align buttons to the right */
    }

    .cookie-btn {
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .cookie-btn-accept {
        background-color: #007BFF;
        color: white;
    }
    .cookie-btn-accept:hover {
        background-image: linear-gradient(90deg, #3a7bd5, #5f1782);
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    }

    .cookie-btn-decline {
        background-color: transparent;
        color: #555;
        border: 2px solid #e0e0e0;
    }
    .cookie-btn-decline:hover {
        background-color: #f0f0f0;
        border-color: #c0c0c0;
    }

    /* Responsive adjustments */
    @media (max-width: 500px) {
        .cookie-consent-container {
            /* On mobile, make it full-width at the bottom */
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: 15px 15px 0 0; /* Only round top corners */
        }
    }
