
  :root {
    --primary: #1e5f8a;
    --secondary: #4a9fd8;
    --accent: #ff7d00;
    --light: #f5f9fc;
    --dark: #0a2f45;
    --gray: #667580;
    --success: #28a745;
    --error: #dc3545;
    --text: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

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

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

  p {
    margin-bottom: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

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

  /* Hero Section */
  .contact-hero {
    position: relative;
    background-color: var(--primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
  }

  .contact-hero .container {
    position: relative;
    z-index: 1;
  }

  .contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

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

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

  .contact-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
  }

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

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

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

  .contact-card p {
    margin-bottom: 0.5rem;
  }

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

  .form-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
  }

  .form-intro {
    flex: 1;
  }

  .form-intro img {
    border-radius: var(--border-radius);
    margin-top: 2rem;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

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

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

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

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

  input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(74, 159, 216, 0.2);
  }

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

  .checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
  }

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

  .submit-btn {
    grid-column: 1 / -1;
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #e67200;
  }

  /* Map Section */
  .map-section {
    padding: 5rem 0;
    background-color: white;
  }

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

  .map-container {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }

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

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

  .direction-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
  }

  .direction-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  /* FAQ Section */
  .faq-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
  }

  .faq-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }

  .faq-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
  }

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

  .faq-question h3 {
    margin-bottom: 0;
    color: var(--dark);
    font-size: 1.2rem;
  }

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

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

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
    color: var(--text);
  }

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

  .faq-more {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: white;
    position: relative;
    z-index: 1;
  }

  /* Newsletter Section */
  .newsletter-section {
    padding: 5rem 0;
    background-color: var(--light);
  }

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

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

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

  .newsletter-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .newsletter-btn:hover {
    background-color: #174b6e;
  }

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

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

    .form-container {
      flex-direction: row;
    }

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

    .directions {
      grid-template-columns: repeat(3, 1fr);
    }

    .input-group {
      flex-direction: row;
    }

    .newsletter-btn {
      flex-shrink: 0;
    }
  }

  @media (min-width: 1024px) {
    .contact-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    h1 {
      font-size: 4rem;
    }

    h2 {
      font-size: 2.5rem;
    }
  }
