
  :root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #457b9d;
    --light: #f1faee;
    --dark: #1d3557;
    --gray: #8d99ae;
    --success: #2a9d8f;
    --warning: #e9c46a;
    --error: #e76f51;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }

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

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

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

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

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

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

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

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

  p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
  }

  a:hover {
    color: var(--primary);
  }

  button {
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
  }

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

  /* Hero Section */
  .contact-hero {
    padding: 120px 0;
    background-color: var(--secondary);
    color: var(--light);
    text-align: center;
  }

  .contact-hero h1,
  .contact-hero .hero-subtitle {
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact Options */
  .contact-options {
    background-color: var(--light);
  }

  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .contact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
  }

  .contact-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--primary);
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .icon-wrapper i {
    font-size: 2rem;
    color: white;
  }

  .contact-link {
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .chat-button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 10px;
  }

  .chat-button:hover {
    background-color: var(--primary);
  }

  /* Contact Form Section */
  .contact-form-section {
    background-color: #f8f9fa;
  }

  .form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .form-info img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-top: 30px;
    box-shadow: var(--box-shadow);
  }

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

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

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

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

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

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

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

  .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
  }

  .submit-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: var(--transition);
  }

  .submit-button:hover {
    background-color: #d62839;
    transform: translateY(-2px);
  }

  /* Store Locations */
  .store-locations {
    background-color: var(--secondary);
    color: var(--light);
  }

  .store-locations h2,
  .store-locations .section-intro {
    color: var(--light);
    text-align: center;
  }

  .section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
  }

  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .location-card {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }

  .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .location-card h3 {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

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

  .location-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
  }

  .location-link:hover {
    color: var(--accent);
  }

  /* FAQ Section */
  .faq-section {
    background-color: #f8f9fa;
  }

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

  .faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

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

  .faq-question:hover {
    background-color: #f1f1f1;
  }

  .faq-question i {
    transition: var(--transition);
  }

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

  .faq-answer {
    background-color: white;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer.active {
    padding: 0 25px 20px;
    max-height: 1000px;
  }

  /* Newsletter Section */
  .newsletter-section {
    background-color: var(--primary);
    color: white;
    text-align: center;
  }

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

  .newsletter-section h2 {
    color: white;
  }

  .newsletter-form {
    margin-top: 30px;
  }

  .newsletter-form .form-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 20px;
  }

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

  .newsletter-form button {
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
  }

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

  .newsletter-form .checkbox-group {
    justify-content: center;
  }

  .newsletter-form .checkbox-group label {
    color: white;
  }

  /* Responsive */
  @media (max-width: 991px) {
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

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

    .form-info {
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }

    h1 {
      font-size: 2rem;
    }

    h2 {
      font-size: 1.8rem;
    }

    .hero-subtitle {
      font-size: 1.2rem;
    }

    .contact-hero {
      padding: 80px 0;
    }

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

  @media (max-width: 576px) {
    .contact-card {
      padding: 20px;
    }

    .contact-form {
      padding: 25px;
    }

    .location-card {
      padding: 20px;
    }
  }
