html {
  scroll-behavior: smooth;
}

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

/* Header */
header {
  background-color: #1a1a1a;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 1rem 30px 0;
  text-align: center;
}

.logo-box {
  flex: 0 0 auto;
}

.logo {
  max-height: 130px;
  width: auto;
}

/* Business Info */
.business-info h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #ffffff;
}

.business-info p {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  color: #dddddd;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: center;
}

nav ul li {
  display: inline-block;
  margin: 0 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  padding: 0.3rem;
}

nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4CAF50;
}

/* Main Content */
main {
  max-width: 950px;
  margin: auto;
  padding: 40px 20px;
}

.section-content {
  display: none;
  background-color: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-content.active {
  display: block;
}

/* Section Titles */
h2 {
  color: #2e8b57;
  margin-top: 0;
}

/* Lists */
ul {
  padding-left: 20px;
}

li {
  line-height: 1.8;
}

/* Home Image */
.home-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 40px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  .logo {
    max-height: 100px;
  }
}
