
  :root {
    --primary: #006db7; /* LEGO blue */
    --secondary: #ffcf00; /* LEGO yellow */
    --accent: #e3000b; /* LEGO red */
    --dark: #333333;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #cccccc;
    --text: #333333;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

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

  h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

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

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

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

  p {
    margin-bottom: 1rem;
  }

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

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

  /* Hero Section */
  .contact-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    overflow: hidden;
  }

  .contact-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

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

  .content-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
  }

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

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

  .contact-info .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  /* Contact Form Section */
  .contact-form-section {
    padding: 4rem 0;
  }

  .contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

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

  .form-group textarea {
    resize: vertical;
  }

  .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;
    margin-bottom: 0;
  }

  .submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
  }

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

  .contact-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

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

  .faq-container {
    margin-top: 2rem;
  }

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

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

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

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

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
  }

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

  .faq-item.active .faq-answer {
    display: block;
  }

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

  /* Map Section */
  .map-section {
    padding: 4rem 0;
  }

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

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

  .direction-item {
    text-align: center;
  }

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

  /* Newsletter Section */
  .newsletter-section {
    position: relative;
    padding: 4rem 0;
    color: var(--white);
    margin-top: 3rem;
  }

  .newsletter-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .newsletter-form button {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background-color 0.3s;
  }

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

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

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

  /* Media Queries */
  @media (min-width: 768px) {
    .contact-hero {
      height: 400px;
    }

    h1 {
      font-size: 3rem;
    }

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

    .contact-form-section .container {
      grid-template-columns: 3fr 2fr;
    }

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

    .full-width {
      grid-column: span 2;
    }

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

  @media (min-width: 1024px) {
    .contact-hero {
      height: 500px;
    }

    h1 {
      font-size: 3.5rem;
    }

    .subtitle {
      font-size: 1.5rem;
    }
  }
