/* Base Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header Bar */
.header-bar {
  background-color: #263238;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img.site-logo {
  height: 60px;
  width: auto;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Main Content */
.page-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Info Section Layout */
.info-section {
  padding: 2rem 1rem;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #263238;
  margin: 1rem 0;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.info-text {
  flex: 1 1 300px;
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.info-image {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.section-heading {
  text-align: center;
  padding: 1rem 1rem 1rem;
  /*background-color: #263238;*/
  background: linear-gradient(to right, #263238, #607d8b);
  color: white;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin: 0;
}

.section-divider {
  width: 100px;
  height: 6px;
  margin: 1rem auto 0;
  background: #488aff; /* or white, or a brand accent */
  border-radius: 2px;
}




/* Footer */
footer {
  background-color: #263238;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-menu ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .page-content {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
  
  
}