/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Scroll offset for sticky header */
section {
  scroll-margin-top: 200px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 100px; /* Adjusted for taller mobile header */
}
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #333;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Header Flex Layout */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #333;
  color: #fff;
}

.header-left {
  flex: 1;
}

.header-center {
  flex: 2;
  text-align: center;
}

.header-right {
  flex: 1;
  text-align: right;
}

/* Logo */
.logo {
  width: 140px;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
}

/* Phone Number */
.header-phone {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 0px 0;
  font-size: 1.6rem;
}

.header-phone a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
  display: none;
  width: 100%;
}

nav.active {
  display: block;
}

nav ul {
  display: flex;
  justify-content: center;
  background: #444;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 15px;
  display: block;
}

nav ul li a:hover {
  background: #555;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Sections */
.content {
  padding: 40px 0;
  background: #fff;
}

.content h2 {
  margin-bottom: 20px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 10px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

form button:hover {
  background: #555;
}

/* Map */
.map-container {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

.content ul li::marker {
  font-size: 2em;
  color: #333;
}




/* Responsive Styles */
@media (max-width: 768px) {
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }

  .logo {
    width: 80px;
  }

  .header-left {
    flex: 0 0 auto;
  }

  .header-center {
    flex: 1;
    text-align: center;
  }

  .header-center h1 {
    font-size: 1.2rem;
    margin: 0;
  }

  .header-right {
    flex: 0 0 auto;
  }

  .burger {
    display: flex;
  }

  .header-phone {
    font-size: 1.4rem;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    background: #333;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  nav ul li {
    width: 100%;
    margin: 10px 0;
    text-align: left;
  }

  nav ul li a {
    display: inline-block;
    padding: 10px 15px;
  }
	
.content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
  }

  .content ul li {
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
  }

  .content ul li::before {
    content: "•"; /* Custom bullet */
    position: absolute;
    left: 0; /* Adjust this to move the bullet */
    top: 0.2em; /* Vertically center it */
    font-size: 1.2em; /* Bullet size */
    color: #333; /* Bullet color */
  }
	.content ul li::marker {
  font-size: 2em;
  color: #333;
}
	
}

/* Hide burger on desktop */
@media (min-width: 769px) {
  .burger {
    display: none !important;
  }

  nav {
    display: block;
  }
}

/* Utility Classes */
.no-decoration {
  text-decoration: none;
  color: inherit;
}