
    /* Base Styles - Matching index.html */
    :root {
      --primary-color: #166534;
      --primary-light: #059669;
      --primary-dark: #14532d;
      --text-color: #333;
      --bg-color: #f8f9fa;
      --header-bg: #f0fdf4;
      --header-text: #166534;
      --card-bg: #fff;
      --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --footer-bg: #000;
      --footer-text: #d1d5db;
      --green-light: #e6f0e6;
      --green-dark: #2f4f33;
      --green-mid: #4a7c3a;
    }

    [data-theme="dark"] {
      --primary-color: #4ade80;
      --primary-light: #34d399;
      --primary-dark: #166534;
      --text-color: #f0f0f0;
      --bg-color: #1a1a1a;
      --header-bg: #264734;
      --header-text: #f0f0f0;
      --card-bg: #2d2d2d;
      --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      --footer-bg: #050505;
      --footer-text: #b0b0b0;
      --green-light: #1a2a1a;
      --green-dark: #4a7c3a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: background-color 0.3s, color 0.3s;
    }

    body {
      font-family: 'Inter', Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      padding-top: 80px;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header - Matching index.html */
    header {
      background-color: var(--header-bg);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .logo img {
      width: 30px;
    }

    .logo-text {
      color: var(--green-dark);
      font-weight: bold;
      font-size: 1.25rem;
      font-family: 'Poppins', sans-serif;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-color);
    }

    .nav-link.active {
      color: var(--primary-color);
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 0.25rem;
    }

    /* Theme Toggle */
    .theme-toggle {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      margin-left: 1rem;
      color: var(--text-color);
      font-size: 1.25rem;
    }

    /* Mobile Menu Button */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: var(--text-color);
      font-size: 1.5rem;
    }

    /* Button */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--primary-color);
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* Main Content Styles */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .section {
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .section-subtitle {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.875rem;
      margin-bottom: 10px;
      color: var(--primary-dark);
    }

    .section-text {
      font-size: 1.125rem;
      color: var(--text-color);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    /* Contact Section */
    .contact-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .contact-container {
        flex-direction: row;
      }
    }

    .contact-info {
      flex: 1;
    }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 15px;
      color: var(--primary-color);
      font-weight: 600;
    }

    .contact-method i {
      font-size: 1.25rem;
      color: var(--primary-color);
    }

    /* Form Styles */
    .contact-form {
      flex: 1;
      background-color: var(--green-light);
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: var(--card-shadow);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-row {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 480px) {
      .form-row {
        flex-direction: row;
      }
    }

    .form-input {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--primary-light);
      border-radius: 0.5rem;
      font-family: inherit;
      font-size: 1rem;
      background-color: var(--bg-color);
      color: var(--text-color);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px var(--primary-color);
    }

    textarea.form-input {
      min-height: 150px;
      resize: vertical;
    }

    .form-submit {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .form-submit:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* Offices Section */
    .office-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .office {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-bottom: 3rem;
      background-color: var(--card-bg);
      padding: 1.5rem;
      border-radius: 0.75rem;
      box-shadow: var(--card-shadow);
    }

    @media (min-width: 768px) {
      .office {
        flex-direction: row;
        align-items: center;
      }
    }

    .office-info {
      flex: 1;
    }

    .office-map {
      flex: 1;
      max-width: 400px;
    }

    .office-map img {
      width: 100%;
      height: auto;
      border-radius: 0.5rem;
      box-shadow: var(--card-shadow);
      transition: transform 0.3s;
    }

    .office-map img:hover {
      transform: scale(1.02);
    }

    /* Why Talk to Us Section */
    .why-talk-section {
      background-color: var(--green-light);
      border-radius: 0.75rem;
      padding: 2rem;
      box-shadow: var(--card-shadow);
    }

    @media (min-width: 768px) {
      .why-talk-section {
        display: flex;
        gap: 2rem;
      }
    }

    .why-talk-content {
      flex: 1;
    }

    .why-talk-form {
      flex: 1;
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .why-talk-form {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        border-left: 1px solid var(--primary-light);
        padding-left: 2rem;
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .header-container {
        padding: 1rem;
      }

      .menu-toggle {
        display: block;
      }

      nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
      }

      nav.open {
        left: 0;
      }
    }

    /* Footer Styles - Matching index.html */
    footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 4rem 2rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 768px) {
      .footer-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .footer-about {
      grid-column: 1 / -1;
    }

    @media (min-width: 768px) {
      .footer-about {
        grid-column: auto;
      }
    }

    .footer-about h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .footer-about h2 span {
      color: #4ade80;
    }

    .footer-about p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--footer-text);
    }

    .footer-info h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-info ul {
      list-style: none;
    }

    .footer-info li {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .footer-info svg {
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
      margin-top: 0.25rem;
      color: #4ade80;
    }

    .footer-info a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-info a:hover {
      color: white;
    }

    .footer-contact {
      display: flex;
      gap: 1rem;
      font-size: 0.8rem;
      color: #9ca3af;
      margin-top: 0.5rem;
    }

    .footer-contact svg {
      width: 1rem;
      height: 1rem;
      color: #4ade80;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer-social a {
      color: var(--footer-text);
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: #4ade80;
    }

    .footer-social svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .footer-links h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-links nav {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: #4ade80;
    }

    .footer-links svg {
      width: 1rem;
      height: 1rem;
      color: #4ade80;
    }

    .footer-description {
      max-width: 800px;
      margin: 2rem auto 0;
      text-align: center;
      font-size: 0.8rem;
      color: #9ca3af;
      line-height: 1.6;
    }

    .footer-copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #374151;
      font-size: 0.75rem;
      color: #9ca3af;
    }
    /* Responsive iframe container */
  .office-map {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }
  
  /* Responsive iframe */
  .office-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Office layout adjustments */
  .office {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  @media (min-width: 768px) {
    .office {
      flex-direction: row;
    }
    .office-info {
      flex: 1;
    }
    .office-map {
      flex: 1;
    }
  }