
  :root {
    --primary: #3a5a40;
    --secondary: #a3b18a;
    --accent: #588157;
    --light: #f5f5f5;
    --dark: #344e41;
    --text: #333333;
    --white: #ffffff;
    --gray: #e9ecef;
    --gray-dark: #6c757d;
    --error: #d62828;
    --success: #2a9d8f;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  section {
    padding: 5rem 0;
    position: relative;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  .lead {
    font-size: 1.25rem;
    font-weight: 300;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Contact Hero Section */
  .contact-hero {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--light);
  }

  .contact-hero h1 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
  }

  .contact-hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
  }

  .contact-hero .lead {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text);
    font-size: 1.25rem;
  }

  /* Contact Info Section */
  .contact-info {
    background-color: var(--white);
    padding: 5rem 0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .contact-card {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-10px);
  }

  .contact-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .contact-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
  }

  .contact-detail {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0.5rem 0;
  }

  address {
    font-style: normal;
    margin-bottom: 1.5rem;
  }

  .hours {
    margin-top: 1.5rem;
  }

  .hours p {
    margin-bottom: 0.5rem;
  }

  /* Contact Form Section */
  .contact-form-section {
    background-color: var(--light);
    padding: 6rem 0;
  }

  .form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  }

  .form-intro {
    padding: 3rem;
  }

  .form-intro img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
  }

  .contact-form {
    padding: 3rem;
    background-color: var(--gray);
    border-radius: 0 15px 15px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .full-width {
    grid-column: 1 / -1;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
  }

  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
  }

  textarea {
    resize: vertical;
    min-height: 150px;
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
  }

  .checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .submit-btn {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }

  .submit-btn:hover {
    background-color: var(--dark);
  }

  .form-note {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-top: 1rem;
  }

  /* Map Section */
  .map-section {
    padding: 6rem 0;
    background-color: var(--white);
  }

  .map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
  }

  .map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,1) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
  }

  .directions-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }

  .transport-options {
    margin: 2rem 0;
  }

  .transport-option {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .transport-option i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .transport-option h4 {
    margin-bottom: 0.5rem;
  }

  .transport-option p {
    margin-bottom: 0.5rem;
  }

  .directions-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .directions-btn:hover {
    background-color: var(--dark);
  }

  /* FAQ Section */
  .faq-section {
    background-color: var(--light);
    padding: 6rem 0;
  }

  .faq-section h2 {
    text-align: center;
  }

  .faq-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
  }

  .faq-question {
    padding: 1.5rem;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
  }

  .faq-question i {
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.3s ease;
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  .faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
  }

  .faq-more {
    text-align: center;
    margin-top: 2rem;
  }

  .faq-more a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }

  .faq-more a:hover {
    text-decoration: underline;
  }

  /* Newsletter Section */
  .newsletter-section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--dark);
    color: var(--white);
  }

  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-content h2 {
    color: var(--white);
  }

  .newsletter-form {
    margin-top: 2rem;
  }

  .newsletter-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-form input[type="email"] {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }

  .newsletter-form button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .newsletter-form button:hover {
    background-color: var(--secondary);
  }

  .newsletter-form .checkbox-group {
    margin-top: 1rem;
    justify-content: center;
  }

  .newsletter-form .checkbox-group label {
    color: var(--white);
    font-size: 0.85rem;
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .form-container {
      grid-template-columns: 1fr 1fr;
    }

    .contact-form {
      grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form .form-group {
      flex-direction: row;
    }

    .newsletter-form button {
      width: auto;
    }
  }

  @media (min-width: 992px) {
    h1 {
      font-size: 4rem;
    }

    h2 {
      font-size: 3rem;
    }

    .lead {
      font-size: 1.5rem;
    }

    .contact-hero {
      padding: 10rem 0;
    }

    .map-overlay {
      width: 50%;
    }
  }
