/* About Page Styles */
.hero {
    text-align: center;
    background: url("../images/about-cover.jpg") no-repeat center/cover;
}

.about-us, .faq, .business-hours, .find-us {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.faq-item h3 {
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--accent-color);
}

.faq-item p {
    display: none;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
}

.faq-item.active p {
    display: block;
}

/* Business Hours */
.business-hours p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Find Us Section */
.map-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.business-info {
    flex: 1 1 100px;
    font-size: 1.2rem;
}

.google-map {
    flex: 1 1 100px;
}

.google-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.about-us {
    display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap; /* Keeps it responsive */
}

@media (max-width: 768px) {
    .map-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.about-owner-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
  }
  
  .owner-image {
    flex: 1;
    min-width: 250px;
  }
  
  .owner-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .owner-text {
    flex: 2;
  }
  
  @media (max-width: 768px) {
    .about-owner-container {
      flex-direction: column;
      text-align: center;
    }
  
    .owner-text {
      text-align: center;
    }
  }
  