/* Shared Content Styles for About, Contact, FAQ Pages */
.about-content,
.contact-content,
.faq-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .about-content,
  .contact-content,
  .faq-content {
    padding: 40px;
  }
}

.about-intro {
  font-size: 15px;
  color: #5a9997;
  margin-bottom: 25px;
  line-height: 1.6;
  font-style: italic;
}

.about-content h2,
.contact-content h2,
.faq-content h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff8c69;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 140, 105, 0.2);
}

.about-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #5ebdb8;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 15px 0;
}

.about-content li {
  font-size: 14px;
  color: #4a7b78;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.about-content li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff8c69;
  font-weight: 700;
}

.about-content code {
  background: rgba(94, 189, 184, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #2c5f5d;
}

.about-content a {
  color: #5ebdb8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.about-content a:hover {
  color: #ff8c69;
  text-decoration: underline;
}

.contact-content h2 {
  font-size: 24px;
}

.about-section {
  margin-bottom: 25px;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #5ebdb8;
}

.about-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #4a7b78;
}

.about-section p {
  margin-bottom: 0;
}

/* Removed: Menu Page styles - moved to styles/pages/menu.css */
/* Removed: Home Page styles - moved to styles/pages/home.css */
/* Removed: Contact Page styles - moved to styles/pages/contact.css */
/* Removed: FAQ Page styles - moved to styles/pages/faq.css */
/* Removed: Order Page styles - moved to styles/pages/order.css */
/* Removed: Wholesale Page styles - moved to styles/pages/wholesale.css */
/* Removed: Page-specific responsive overrides - moved to respective page files */