:root {
  /* Primary Colors - Retro Analog Color Scheme */
  --primary-color: #4a7dff;
  --primary-dark: #3a62cc;
  --primary-light: #7097ff;
  
  --secondary-color: #ff6b4a;
  --secondary-dark: #d45639;
  --secondary-light: #ff8c73;
  
  --accent-color: #ffcc4a;
  --accent-dark: #d4aa3d;
  --accent-light: #ffdb7c;
  
  /* Neutral Colors */
  --background-light: #f9f7f5;
  --background-dark: #222222;
  --text-color: #333333;
  --text-color-light: #ffffff;
  --text-color-muted: #777777;
  
  /* Brutalist Elements */
  --border-thick: 4px solid var(--primary-color);
  --border-accent: 4px solid var(--secondary-color);
  --box-shadow-neo: 5px 5px 0px rgba(0, 0, 0, 0.8);
  --box-shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Global Styles */
html, body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.title.is-1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-lg);
}

.title.is-2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
}

.title.is-2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
}

.subtitle.is-3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

p {
  margin-bottom: var(--spacing-md);
}

.content {
  font-family: var(--body-font);
  color: var(--text-color);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section:nth-child(even) {
  background-color: var(--background-light);
}

.container {
  padding: 0 var(--spacing-lg);
}

/* ====== Retro & Neo-Brutalist Styling ====== */
.retro-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
}

.retro-title {
  text-transform: uppercase;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.retro-subtitle {
  text-transform: uppercase;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.neo-card {
  border: 3px solid var(--background-dark);
  border-radius: 8px;
  box-shadow: var(--box-shadow-neo);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  background-color: #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.neo-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

.neo-card .card-image {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.neo-card .image-container {
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.neo-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.neo-card:hover .image-container img {
  transform: scale(1.05);
}

.neo-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.neo-modal {
  border: 3px solid var(--background-dark);
  border-radius: 8px;
  box-shadow: var(--box-shadow-neo);
}

.neo-modal .modal-card-head {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border-bottom: 3px solid var(--background-dark);
}

.neo-modal .modal-card-title {
  color: var(--text-color-light);
  font-family: var(--heading-font);
  font-weight: 700;
}

.neo-modal .modal-card-foot {
  background-color: var(--background-light);
  border-top: 3px solid var(--background-dark);
}

/* ====== Buttons ====== */
.button, button, input[type='submit'] {
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.neo-button {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 3px solid var(--background-dark) !important;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.neo-button:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}

.neo-button:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.neo-button-outline {
  background-color: transparent !important;
  color: var(--background-dark) !important;
  border: 3px solid var(--background-dark) !important;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.neo-button-outline:hover {
  background-color: var(--background-light) !important;
  transform: translateY(-3px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}

.neo-button-outline:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.neo-button-sm {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 2px solid var(--background-dark) !important;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-size: 0.9rem !important;
  padding: 0.4rem 0.8rem !important;
}

.neo-button-sm:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.neo-button-outline-sm {
  background-color: transparent !important;
  color: var(--background-dark) !important;
  border: 2px solid var(--background-dark) !important;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-size: 0.9rem !important;
  padding: 0.4rem 0.8rem !important;
}

.neo-button-outline-sm:hover {
  background-color: var(--background-light) !important;
  transform: translateY(-2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

/* ====== Form Elements ====== */
.neo-input, .neo-textarea, .neo-select select {
  border: 3px solid var(--background-dark) !important;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.neo-input:focus, .neo-textarea:focus, .neo-select select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 3px 3px 0px rgba(74, 125, 255, 0.3);
}

.checkbox {
  font-family: var(--body-font);
}

/* ====== Header & Navigation ====== */
.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  transition: all var(--transition-medium);
}

.retro-header {
  border-bottom: 5px solid var(--primary-color);
}

.header.scrolled {
  padding: 0.2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  background-color: transparent;
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent !important;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-burger {
  color: var(--text-color);
}

.navbar-burger:hover {
  background-color: transparent;
}

.navbar-burger span {
  background-color: currentColor;
}

.navbar-menu.is-active {
  box-shadow: 0 8px 16px rgba(10,10,10,.1);
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(10,10,10,.1);
  }
  
  .navbar-item {
    text-align: center;
  }
}

/* ====== Hero Section ====== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.retro-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero .hero-body {
  position: relative;
  z-index: 2;
}

.hero .title, .hero .subtitle, .hero p {
  color: var(--text-color-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ====== Process Section ====== */
.process-item {
  margin-bottom: var(--spacing-lg);
  transition: transform var(--transition-medium);
}

.process-item:hover {
  transform: translateY(-10px);
}

.progress-container {
  margin-top: var(--spacing-xl);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.progress-step {
  position: relative;
  width: 16.66%;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-color-muted);
  transition: color var(--transition-fast);
}

.progress-step::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--text-color-muted);
  transition: background-color var(--transition-fast);
}

.progress-step.active {
  color: var(--primary-color);
}

.progress-step.active::before {
  background-color: var(--primary-color);
}

.progress {
  height: 10px;
}

/* ====== Clientele Section ====== */
.clientele-item {
  margin-bottom: var(--spacing-lg);
}

/* ====== Webinars Section ====== */
.webinar-item {
  margin-bottom: var(--spacing-lg);
}

.webinar-date {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  font-family: var(--heading-font);
}

/* ====== Awards Section ====== */
.award-item {
  margin-bottom: var(--spacing-lg);
}

/* ====== Blog Section ====== */
.blog-item {
  margin-bottom: var(--spacing-lg);
}

.article-date {
  color: var(--text-color-muted);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-family: var(--heading-font);
}

/* ====== Customer Stories ====== */
.customer-story {
  margin-bottom: var(--spacing-lg);
}

.customer-story .image-container {
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border: 3px solid var(--primary-color);
}

.customer-story .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-story h3 {
  color: var(--primary-color);
}

/* ====== Community Section ====== */
.community-feature {
  margin-bottom: var(--spacing-lg);
}

.community-stats {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: var(--spacing-xs);
  color: white;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

/* ====== Contact Section ====== */
.contact-info {
  margin-bottom: var(--spacing-lg);
}

.contact-info h3 {
  margin-bottom: var(--spacing-md);
}

/* ====== Footer ====== */
.footer {
  background-color: var(--background-dark);
  color: white;
  padding: var(--spacing-xl) 0;
}

.retro-footer {
  border-top: 5px solid var(--primary-color);
}

.footer .title, .footer h3 {
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links li a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.social-links li a {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}

.social-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-links li a[href*="facebook"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffffff"><path d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z"/></svg>');
}

.social-links li a[href*="twitter"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffffff"><path d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z"/></svg>');
}

.social-links li a[href*="instagram"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg>');
}

.social-links li a[href*="linkedin"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffffff"><path d="M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z"/></svg>');
}

.social-links li a[href*="youtube"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23ffffff"><path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/></svg>');
}

/* ====== Success Page ====== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
}

.success-container {
  text-align: center;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

/* ====== Static Pages (Privacy, Terms) ====== */
.static-page-content {
  padding-top: 100px;
  max-width: 900px;
  margin: 0 auto;
}

.static-page-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

.static-page-content h2 {
  font-size: 1.8rem;
  margin: var(--spacing-lg) 0 var(--spacing-md);
  color: var(--text-color);
}

.static-page-content p {
  margin-bottom: var(--spacing-md);
}

.static-page-content ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.static-page-content li {
  margin-bottom: var(--spacing-sm);
}

/* ====== Responsive Adjustments ====== */
@media screen and (max-width: 768px) {
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .customer-story .image-container {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 576px) {
  .title.is-1 {
    font-size: 2rem;
  }
  
  .title.is-2 {
    font-size: 1.8rem;
  }
  
  .subtitle.is-3 {
    font-size: 1.3rem;
  }
}

/* ====== Animations ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.animated-element {
  opacity: 0;
}

.animated-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.animated-fadeInDown {
  animation: fadeInDown 0.8s ease forwards;
}

.animated-fadeInLeft {
  animation: fadeInLeft 0.8s ease forwards;
}

.animated-fadeInRight {
  animation: fadeInRight 0.8s ease forwards;
}

.animated-pulse {
  animation: pulse 2s infinite;
}

/* ====== Utility Classes ====== */
.has-background-primary {
  background-color: var(--primary-color) !important;
}

.has-text-primary {
  color: var(--primary-color) !important;
}

.has-background-secondary {
  background-color: var(--secondary-color) !important;
}

.has-text-secondary {
  color: var(--secondary-color) !important;
}

.has-background-accent {
  background-color: var(--accent-color) !important;
}

.has-text-accent {
  color: var(--accent-color) !important;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.box-shadow {
  box-shadow: var(--box-shadow-soft);
}

.neo-border {
  border: 3px solid var(--background-dark);
  box-shadow: var(--box-shadow-neo);
}

.retro-border {
  border: 5px solid var(--primary-color);
}

.text-uppercase {
  text-transform: uppercase;
}

.letter-spacing {
  letter-spacing: 1px;
}

.text-center {
  text-align: center;
}

/* Readmore Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-right: 20px;
  transition: all var(--transition-fast);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Cookie Consent Custom Styles */
#cookie-consent {
  font-family: var(--body-font);
  border-top: 3px solid var(--primary-color);
}

#accept-cookies {
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: var(--primary-color);
  border: 2px solid white;
  transition: all var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}