
/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

/* Header */
header {
  background-color: #006666;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Navigation */
nav {
  background-color: #006666;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  flex-wrap: wrap;
  border-radius: 8px;
  gap: 6px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 10px;
  font-weight: bold;
  font-size: 18px;
}

nav a:hover {
  text-decoration: underline;
}

/* Containers */
.container, .form-container, .contact-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Buttons */
button {
  background-color: #006666;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #004d4d;
}

/* Forms */
input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.gallery img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Back Link */
.back-link {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  color: #006666;
  font-weight: bold;
}
