body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #222;
  line-height: 1.6;
}

header {
  background: #1f2a36;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.phone-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta {
  background: white;
  color: #1f2a36;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta.secondary {
  background: #d9e1e8;
}

section {
  background: white;
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
}

h2 {
  color: #1f2a36;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 8px 0;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

iframe {
  max-width: 900px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* =========================
   NAV BAR STYLES
========================= */

.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}

.nav-links .cta {
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    flex-direction: column;
    width: 200px;
  }

  .nav-links.show {
    display: flex;
  }
}
.services-page {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.service-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  background: #f7f7f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-item h3 {
  margin: 0;
}

.service-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-item.active .service-description {
  max-height: 300px;
  margin-top: 10px;
}
