@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
body, html {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      color: #4a4a4a;
      overflow-y: auto;
      line-height: 1.6;
    }
    
    /* Layout */
.page-container {
      display: flex;
      min-height: 100vh;
      background: #fff;
    }
    
    /* Header */
header {
      position: fixed;
      top: 0;
      height: 45px;
      width: 100%;
      background:#fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 10px;
    
      z-index: 1000;
    }
header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #dc32a9, #7e1994); /* Use actual colors since vars might not be defined */
  z-index: 1001; /* Above the header */
}

/* Make sure the header content stays above the pseudo-element */
header > * {
  position: relative;
  z-index: 1002;
}
     
header img {
      margin-top:15px;
      width: auto;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    
header img:hover {
      transform: scale(1.05);
    }
.toggle-login-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: #012978;
}

.toggle-login-btn:hover{
   transform: scale(1.05);
   cursor: pointer;
   color:#fa60a8;
   
}


    
    /* Content */
    .content-container {
      flex-grow: 1;
      padding: 80px 40px 200px 40px;
      overflow-y: auto;
      text-align: justify;
      max-width: 900px;
      margin: 0 auto;
    }
    
    /* Headings */
    h1, h2, h3, h4 {
      color: #2c3e50;
      margin-top: 1.5em;
      margin-bottom: 0.5em;
      line-height: 1.3;
    }
    
    h1 {
      font-size: 2.2rem;
      margin-top: 0;
      text-align: center;
      color: #7e1994;
      margin-bottom: 1rem;
    }
    
    h2 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 2em;
      color: #8962b3;
      border-bottom: 2px solid #eaeaea;
      padding-bottom: 0.5rem;
    }
    
    /* Paragraphs */
    p {
      margin: 1em 0;
    }
    
    /* Lists */
    ul {
      margin-left: 30px;
      margin-bottom: 1.5em;
    }
    
    ul li {
      margin-bottom: 0.8em;
      position: relative;
      
    }
    
    ul li::before {
      content: "•";
      color: #f35a9cc6;
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
    }
    
   /* Make all policy links pink */
.policy-links ul li a {
  color: #f35a9cc6;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Highlight current page link */
.policy-links ul li a[href="https://compliance.contranormdigital.com/privacy-policy"] {
  font-weight: bold;
  color: #dc32a9; /* Slightly darker pink for current page */
}

/* Hover effects */
.policy-links ul li a:hover {
  color: #7e1994; /* Purple hover color */
  text-decoration: underline;
} 

.concluding-statement {
  margin: 3em 0;
  padding: 1.5em;
  background: #f0f8ff;
  border-radius: 12px;
  border-left: 4px solid #2575fc;
}
  
#tip-popup {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 380px;
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  font-size: 0.95em;
  border: 1px solid #e0e7ff;
}

#tip-popup.show {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
    
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
    
.popup-header h3 {
  margin: 0;
  color: #6a11cb;
  font-size: 1.3rem;
}
#tip-popup p {
  margin: 0;
  line-height: 1.2;
  font-size: 12px;
}
.close-btn {
  background: #f0f4ff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  color: #6a11cb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: #e0e7ff;
  transform: rotate(90deg);
}

.robot-animation {
  width: 100%;
  height: 160px;
  background: #f8f9ff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Animations */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}
.site-footer p {
  margin: 5px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* For main compliance page */
a[data-expanded="true"] + .policy-excerpt {
  display: block;
}

/* For privacy policy page */
.expanded-policy .policy-excerpt {
  background-color: #f8f9fa;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dashboard-note {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 30px;
}

  /* DIVIDER - This version WILL work */
.section-divider {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  
  /* Modern browsers */
  background-image: linear-gradient(90deg, 
    #dc32a9, #7e1994, 
    #f7bebe, #9400D3,  #dc32a9);
  
  /* Fallback for older browsers */
  background-color: #FF0000; /* Solid red fallback */
  
  /* Add these properties to ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-divider-animate {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  position: relative;
  overflow: hidden;
  
  /* Fallback solid color */
  background-color: #f5ddc9;
}

.section-divider-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* Gradient with the colors you want */
  background: linear-gradient(
    90deg,
    rgba(220, 50, 169, 0) 0%,
    rgba(220, 50, 169, 1) 20%,
    rgba(126, 25, 148, 1) 40%,
    rgba(247, 190, 190, 1) 60%,
    rgba(148, 0, 211, 1) 80%,
    rgba(220, 50, 169, 0) 100%
  );
  
  /* Animation properties */
  animation: shimmer 9s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.site-footer {
text-align: right;
padding-right:20px;

position: fixed;
height:20px;
bottom:10px;
right: 0px;
left: 0px;
}
.site-footer p {
      margin-top:-15px;
      font-size: 16px;
      color: rgba(107, 11, 190, 0.9);
    }
.copyright {
      
      font-size: 12px;
      margin-top: -10px;
    color: rgba(107, 11, 190, 0.9);
}
    
    /* Responsive design */
    @media (max-width: 768px) {
      .content-container {
        padding: 80px 20px 150px 20px;
      }
      
      h1 {
        font-size: 1.7rem;
        text-align:center;
      }
      
      h2 {
        font-size: 1.2rem;
        text-align:left;
      }
      
      
      
      #tip-popup {
        width: 90%;
        right: 5%;
        bottom: 20px;
        left: 5%;
      }
        .site-footer {
        padding: 20px 15px;
      }
      
      .copyright {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 480px) {
      header {
        padding: 0 15px;
        font-size: 1rem;
      }
      h1 {
        font-size: 1.7rem;
        text-align:center;
      }
      
      h2 {
        font-size: 1.2rem;
        text-align:left;
      }
      
      .content-container {
        padding: 70px 15px 120px 15px;
      }
      
    
      
      .robot-animation {
        height: 140px;
      }
    }