/* Cookie Consent Banner Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-top: 3px solid var(--primary-blue);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-consent-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-text a:hover {
  color: #003d73;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-btn-accept {
  background-color: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.cookie-btn-accept:hover {
  background-color: #003d73;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 84, 157, 0.3);
}

.cookie-btn-reject {
  background-color: transparent;
  color: #666;
  border-color: #999;
}

.cookie-btn-reject:hover {
  background-color: #f8f9fa;
  border-color: #666;
  color: #333;
}

/* Responsive styles for cookie consent */
@media (max-width: 1024px) {
  .cookie-consent-container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 0 20px;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 20px 0;
  }

  .cookie-icon {
    font-size: 36px;
  }

  .cookie-text h3 {
    font-size: 16px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .cookie-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: 16px 0;
  }

  .cookie-consent-container {
    padding: 0 15px;
  }

  .cookie-icon {
    font-size: 32px;
  }

  .cookie-text h3 {
    font-size: 15px;
  }

  .cookie-text p {
    font-size: 12px;
  }

  .cookie-btn {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
  }

  .cookie-consent-actions {
    width: 100%;
  }
}
