body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.top-header {
  background-color: #2c2c2c;
  color: white;
  padding: 30px 0;
  text-align: left;
}

.top-header h1 {
  margin: 0;
  font-size: 2.4em;
}

.top-header p {
  font-size: 1.1em;
  color: #ccc;
}

/* Navigation */
.sub-nav {
  background: #444;
  padding: 12px 0;
}

.sub-nav .container a {
  color: white;
  text-decoration: none;
  margin-right: 30px;
  font-weight: bold;
}

.sub-nav .container a:hover {
  color: #ffa500;
}

/* Slider */
.slider-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.slider-frame {
  width: 100%;
  max-width: 900px;
  border: 6px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: black;
}

.slider-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-frame .caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1rem;
}

/* Gallery */
.gallery-section {
  padding: 40px 20px;
  background-color: #fff;
}

.gallery-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery-item {
  width: 200px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.gallery-item p {
  font-size: 0.95em;
  color: #444;
}

/* Footer */
.site-footer {
  background-color: #2c2c2c;
  color: white;
  padding: 20px;
  font-size: 0.9em;
  text-align: left;
}

.site-footer a {
  color: #ffa500;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

