/* Theme colors (same as your home page) */
:root {
  --main-bg: #f8f4f3;
  --text-color: #4a3b36;
  --accent: #f3b8c1;
  --footer-bg: #4a352f;
  --footer-text: #fff;
}

/* General reset */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--main-bg);
  color: var(--text-color);
}

/* Header / Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
}

.logo {
  background: var(--accent);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  padding: 10px 15px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  margin-left: 20px;
  font-weight: 500;
}
nav a.active {
  color: #d43f55;
}

/* Main About Page Content */
.about {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

.about h1, .about h2 {
  color: #7b0323;
}

.about p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.about ul {
  list-style-type: disc;
  margin-left: 25px;
}

.about li {
  margin-bottom: 8px;
}

/* Back button */
.btn-back {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-back:hover {
  background: #d43f55;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  margin-top: 40px;
}

footer h4 {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--footer-text);
  display: block;
  text-decoration: none;
  margin-bottom: 5px;
}

.location {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav a {
    margin: 5px 10px;
  }
  .about {
    margin: 20px;
    padding: 15px;
  }
  footer {
    text-align: center;
    flex-direction: column;
  }
}
