:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --light-bg: #f9f9f9;
  --card-bg: #ffffff;
  --text-color: #333;
  --border-radius: 8px;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* General styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

/* Header styling */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* Navigation menu */
nav ul {
  list-style: none;
  background-color: var(--accent-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ecf0f1;
}

/* Main content */
main {
  padding: 40px 20px;
}

/* Form styling */
form {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

/* Video styling */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Table styling */
table {
  width: 80%;
  margin: 30px auto;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
}

th, td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

th {
  background-color: var(--accent-color);
  color: white;
}

tr:hover {
  background-color: #f0f8ff;
}

/* Gallery styling */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 20px;
}

.gallery-item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  padding: 12px;
  font-weight: 600;
  background-color: #fafafa;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
/* Map Container */

       .map-container {
      display: flex;
      gap: 20px;
      flex-wrap: nowrap;
      margin-top: 20px;
    }
    .map-section {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    iframe {
      width: 100%;
      height: 400px;
      border: none;
    }
    ul {
      margin-top: 10px;
      padding-left: 20px;
      text-align: left;
      width: 90%;