:root {
    --primary: #6c5b6b;
    --secondary: #9d95aa;
    --dark: #595959;
    --bg: #fdfdfd;
    --accent: #9d95aa;
    --font: 'Segoe UI', sans-serif;
  }
  body {
    margin: 0;
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.5;
  }
  .nav-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--primary);
    padding: 0.5em 2em;
  }
  .menu-phone-right a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
  }
  .hero {
    text-align: center;
    padding: 1em;
    background: linear-gradient(160deg, var(--primary), var(--secondary));
    color: white;
  }
  .hero img {
    max-width: 160px;
    width: 100%;
    height: auto;
  }
  h1 {
    font-size: 24px;
    color: #4b4454;
    font-weight: bold;
    margin-top: 30px;
    line-height: 1.4;
  }

  h2 {
    font-size: 20px;
    color: #817192;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: 1.2em;
    margin: 0.2em 0 0.2em;
  }
  .hero-phone {
    margin: 0.2em 0 0;
    font-size: 1em;
    font-weight: 600;
  }
  .hero-phone a {
    color: var(--dark);
    text-decoration: none;
  }
  .hero-phone a:hover {
    text-decoration: underline;
  }
  .tagline {
    font-size: 1em;
    text-transform: capitalize;
    text-align: center;
    margin: 0.5em auto 2em;
    color: var(--primary);
    font-weight: 500;
    max-width: 700px;
  }
  section {
    padding: 1.2em 2em;
    max-width: 900px;
    margin: auto;
  }
  section h2 {
    margin-bottom: 0.3em;
  }
  section p {
    margin-bottom: 1.2em;
  }
  ul {
    list-style-type: disc;
    padding-left: 1.5em;
  }
  button {
    padding: 0.75em 1.5em;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 1em;
  }
  .cta-center {
    text-align: center;
  }
  .hero-image-section {
    text-align: center;
    margin-top: 2em;
    margin-bottom: 1em;
  }
  .hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 0.85;
  }
  .contact-form {
    text-align: center;
  }
  .contact-form input,
  .contact-form textarea {
    width: 80%;
    max-width: 500px;
    padding: 0.6em;
    font-size: 1em;
    margin-top: 0.4em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .contact-form textarea {
    height: 160px;
  }
  footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 2em;
    font-size: 0.9em;
  }
  footer a {
    color: black;
    text-decoration: none;
    margin: 0 0.5em;
  }
  footer a:hover {
    text-decoration: underline;
  }

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    position: relative;
    z-index: 10;
  }

  .hamburger {
    font-size: 2rem;
    cursor: pointer;
    display: none;
    user-select: none;
  }

  .menu-toggle {
    display: none;
  }

  .menu-overlay {
    display: flex;
    gap: 1.5rem;
  }

  .menu-overlay a {
    text-decoration: none;
    color: black;
    font-weight: 500;
  }

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

    .menu-overlay {
      flex-direction: column;
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      z-index: 100;
    }

    .menu-overlay a {
      font-size: 2rem;
      color: white;
    }

    .menu-toggle:checked + .hamburger + .menu-overlay {
      transform: translateX(0);
    }
  }