.page-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  /* General Section Styling */
  section {
    margin-bottom: 60px;
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--text);
  }
  
  /* Headings */
  section h1,
  .title {
    font-size: 2.4rem;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 20px;
  }
  
  /* Paragraphs and Links */
  section p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 16px;
  }
  
  section a {
    color: var(--accent);
    font-size: 1.1rem;
    text-decoration: underline;
  }
  
  
  /* Title Header Before Section Grid */
  .title {
    font-size: 2.2rem;
    text-align: center;
    margin: 60px 0 30px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
  }
  
  /* Photo Gallery */
.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  max-width: 800px;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}
