body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  background-color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-list li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: background-color 0.3s ease;
}

.nav-list a:hover {
  background-color: #333;
}

.card {
  border: none;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cookie-modal {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.cookie-modal h3 {
  margin-bottom: 15px;
  color: #333;
}

.cookie-modal p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 25px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-btn.accept {
  background-color: #28a745;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #2ecc71;
}

.cookie-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body.cookie-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #fff;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #0d6efd;
}

.social-media-wrapper a {
  color: #495057;
}

.social-media-wrapper a:hover {
  color: #0d6efd;
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
  outline: none;
}

#scrollTop.active {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background-color: #333;
  transform: scale(1.1);
}
