
  :root {
    --primary: #e63946;
    --secondary: #1d3557;
    --light: #f1faee;
    --dark: #1d3557;
    --accent: #457b9d;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

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

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

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

  h1 {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }

  h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background-color: var(--primary);
  }

  p {
    margin-bottom: 1.5rem;
  }

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

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

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

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

  .hero-contact .bg-image {
    opacity: 0.3;
  }

  .hero-contact h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
  }

  .hero-contact .subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--white);
  }

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

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

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

  .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

  .map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
  }

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

  .directions {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .directions h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
  }

  .directions p {
    margin-bottom: 0;
  }

  .directions a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
  }

  .directions a:hover {
    text-decoration: underline;
  }

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

  .form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-form {
    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 var(--light-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
  }

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

  .checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
  }

  .btn-submit {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
  }

  .btn-submit:hover {
    background-color: #d32f3a;
    transform: translateY(-3px);
  }

  /* Team Section */
  .team-section {
    background-color: var(--white);
    padding: 5rem 0;
  }

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

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

  .team-member {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .team-member h3, .team-member p {
    padding: 0 1.5rem;
  }

  .team-member h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }

  .team-member .position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .team-member p:last-child {
    margin-bottom: 1.5rem;
  }

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

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

  .accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
  }

  .accordion-header:hover {
    background-color: var(--light);
  }

  .accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .accordion-content p {
    padding-bottom: 1.5rem;
  }

  .accordion-item.active .accordion-content {
    max-height: 500px;
  }

  .accordion-item.active .accordion-header i {
    transform: rotate(45deg);
  }

  .accordion-header i {
    transition: transform 0.3s ease;
  }

  /* CTA Section */
  .cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
  }

  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .cta-content h2::after {
    background-color: var(--white);
  }

  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    min-width: 200px;
  }

  .btn-primary {
    background-color: var(--white);
    color: var(--primary);
  }

  .btn-primary:hover {
    background-color: var(--light);
    transform: translateY(-3px);
  }

  .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }

  .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
  }

  .btn-primary i, .btn-secondary i {
    margin-right: 0.5rem;
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

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

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

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

    .cta-buttons {
      flex-direction: row;
    }
  }

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

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

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