/* Base Styles */
body {
  margin: 0;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
}

/* Container */
.container {
  max-width: 1000px;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin-top: 20px;
  padding: 2rem;
}

/* Form Elements */
input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin: 0.3rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Flash Message */
.flash {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

/* Header */
header {
  background-color: #1e1e2f;
  text-align: center;
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 4px 4px 8px #fff;
  padding: 20px;
}

/* Typography */
h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.content {
  padding: 30px;
  line-height: 1.6;
}

.content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Sidebar Navigation */
.sidebar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px;
  text-align: center;
  gap: 10px;
}

.sidebar a {
  color: navy;
  text-decoration: none;
  font-size: 14px;
}

.sidebar a.active {
  font-weight: bold;
}

/* Call-to-Action Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.cta-buttons a {
  padding: 0.5rem 1rem;
  background: #4b6cb7;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
  background-color: #ff3b3f;
}

/* Icons */
.location-icon {
  font-size: 24px;
  color: #e74c3c;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.location-icon:hover {
  color: #c0392b;
  transform: scale(1.2);
}

/* Image Hover Reveal */
.containerr {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.image {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: auto;
  transition: 0.5s ease;
}

.middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 12px;
  color: white;
}

.containerr:hover .image {
  opacity: 0.3;
}

.containerr:hover .middle {
  opacity: 1;
}

.textt {
  background: #4b6cb7;
  color: #fff;
  font-size: 12px;
  padding: 8px 16px;
  width: 70%;
  text-align: center;
  border-radius: 15px;
}

/* Map Section */
.containerm {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  color: #7f8c8d;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cookie-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cookie-content p {
  flex: 1;
  min-width: 300px;
  margin-bottom: 10px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accept { background: #27ae60; color: white; }
.accept:hover { background: #219653; }

.essential { background: #3498db; color: white; }
.essential:hover { background: #2980b9; }

.reject { background: #e74c3c; color: white; }
.reject:hover { background: #c0392b; }

.manage { background: #f39c12; color: white; }
.manage:hover { background: #d68910; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

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

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

  .sidebar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

