/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #1c1c1c;
  }

  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* Header */
  header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e2e2;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 0;
  }

  .logo-header {
    height: 140px;
  }


  header nav {
    display: flex;
    gap: 1.5rem;
  }

  header nav a {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    transition: color 0.2s;
  }

  header nav a:hover {
    color: #00776b;
  }

  /* Hero Section */
  .hero-icon {
    height: 200px;
    width: auto;
  }


  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-icon {
    height: 96px;
    width: auto;
  }

  .hero {
    background-color: #e9f4f1;
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px 0;
    z-index: 1;
  }
  .hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: 0; /* <-- Make sure it's at the very top */
    width: 100%;
    height: 90px; /* Reduce height if necessary */
    z-index: 0;
    pointer-events: none;
  }
  .hero > .container {
    position: relative;
    z-index: 1;
    padding-top: 2rem; /* Add more if you want the text lower */
  }
  .hero-graphic {
    width: 340px;
    max-width: 90%;
    margin: 2rem auto 0;
    display: block;
  }


  .brand-text h1 {
    font-size: 2rem;
    margin: 0;
    color: #1c1c1c;
  }

  .tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #00776b;
    margin: 0;
  }

  .subtext {
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
  }

  .cta {
    display: inline-block;
    background-color: #00776b;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
  }

  .cta:hover {
    background-color: #005f57;
  }

  /* Content Sections */
  section {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 2rem 0;
    padding: 2rem 1rem;
  }

  section h2 {
    font-size: 1.75rem;
    color: #00776b;
    margin-bottom: 1rem;
  }

  section p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Contact Form */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  form input,
  form textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  form button {
    background-color: #00776b;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  form button:hover {
    background-color: #005f57;
  }

  /* Footer */
  footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666666;
  }
  .accent-divider {
    border: 0;
    height: 3px;
    background: linear-gradient(90deg, #00776b 0%, #b4e7dd 100%);
    margin: 2.5rem 0 2rem 0;
    border-radius: 2px;
  }
  .section-paragraph {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .section-paragraph-icon {
    width: 60px;
    height: 60px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .section-paragraph p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }