
  :root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #f5f5f5;
    --dark: #2c3e50;
    --text: #333;
    --text-light: #777;
    --success: #27ae60;
    --error: #e74c3c;
    --border: #ddd;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

  section {
    position: relative;
    padding: 80px 0;
  }

  h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

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

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

  p {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }

  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.1;
  }

  /* Contact Hero Section */
  .contact-hero {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    padding: 120px 0;
    position: relative;
  }

  .contact-hero h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .contact-hero .subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
  }

  /* Contact Info Section */

  .info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
  }

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

  .info-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
  }

  .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
  }

  .info-card p {
    margin-bottom: 10px;
    color: var(--text);
  }

  /* Contact Form Section */
  .contact-form-section {
    padding: 100px 0;
    background-color: #fff;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .form-intro {
    flex: 1;
  }

  .form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
  }

  .form-intro p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }

  .form-intro img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 30px;
  }

  .contact-form {
    flex: 1;
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
  }

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

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

  .checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .submit-btn {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 20px;
  }

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

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

  .map-container h2 {
    text-align: center;
    margin-bottom: 40px;
  }

  .map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
  }

  .map-wrapper img {
    width: 100%;
    height: auto;
  }

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

  .direction-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .direction-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
  }

  .direction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
  }

  .direction-card p {
    margin-bottom: 10px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 100px 0;
    position: relative;
    background-color: #fff;
  }

  .faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }

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

  .faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }

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

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

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

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

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
  }

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

  /* Newsletter Section */
  .newsletter-section {
    background-color: var(--primary);
    color: #fff;
    padding: 80px 0;
  }

  .newsletter-section .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .newsletter-content {
    flex: 1;
  }

  .newsletter-content h2 {
    color: #fff;
    margin-bottom: 20px;
  }

  .newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .newsletter-form input {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    width: 100%;
  }

  .newsletter-form button {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .newsletter-form button:hover {
    background-color: #d35400;
  }

  .newsletter-info {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .newsletter-image {
    flex: 1;
  }

  .newsletter-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
  }

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

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

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

    .newsletter-section .container {
      flex-direction: row;
    }

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

    .newsletter-form input {
      flex: 1;
    }
  }

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