.cookie-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  z-index: 9999;
  text-align: center;
  padding: 20px;
}

.cookie-modal-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-message {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.cookie-policy-link {
  color: #3498db;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-decline-btn {
  background-color: #e74c3c;
}

.cookie-btn:hover {
  opacity: 0.9;
}





/* Policy Section Styles */
.policy-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.policy-title {
  font-size: 3rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 120px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.policy-subtitle {
  font-size: 1.5rem;
  color: #34495e;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.policy-header {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.policy-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.policy-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-list li::marker {
  color: #e67e22;
}

.policy-content a {
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .policy-title {
    font-size: 2.2rem;
  }

  .policy-content {
    font-size: 1rem;
  }

  .policy-subtitle {
    font-size: 1.3rem;
  }

  .policy-header {
    font-size: 1.1rem;
  }
}
