/* Homepage Layout */
.homepage-layout {
  display: flex;
  min-height: 100vh;
  gap: 2rem;
}

.sidebar {
  width: 300px;
  padding: 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: #f8f9fa;
  border-right: 1px solid #e0e0e0;
}

.main-content {
  flex: 1;
  /* padding: 1rem; */
}

.sidebar-search {
  margin: 1rem 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .homepage-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem;
  }

  .sidebar .menu {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sidebar #copy-controls {
    margin-top: 1rem;
  }

  .sidebar .copy-buttons {
    grid-template-columns: 1fr;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --dust-grey: #dad7cdff;
  --dry-sage: #a3b18aff;
  --fern: #588157ff;
  --hunter-green: #3a5a40ff;
  --pine-teal: #344e41ff;
}

body {
  background: linear-gradient(135deg, var(--dust-grey), #ffffff);
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  text-align: center;
  padding: 20px;
  background: var(--crushed-berry);
  color: white;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Original Menu Styles (keep for other pages) */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  margin-left: 50px;
}

.menu a {
  background: var(--fern);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

/* Sidebar Specific Styles */
.sidebar .menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 1rem 0;
  width: 100%;
  max-width: none;
}

.sidebar .menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 6px;
  background: var(--raspberry);
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  border: none;
  font-weight: 6;
}

.sidebar .menu a:hover {
  background: var(--crushed-berry);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Floating Copy Controls - Centered Design */
#floating-copy-controls {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--hunter-green), var(--fern));
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 700px;
  z-index: 2147483647; /* Maximum z-index */
  display: flex;
  gap: 20px;
  align-items: center;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

#floating-copy-controls .copy-input-group {
  flex: 1;
  max-width: 800px;
  position: relative;
}

#floating-copy-controls .copy-input-group input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#floating-copy-controls .copy-input-group input:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: white;
}

#floating-copy-controls .copy-buttons {
  display: flex;
  gap: 15px;
}

#floating-copy-controls .copy-buttons button {
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

#floating-copy-controls .copy-buttons button:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#floating-copy-controls .copy-buttons button:active {
  transform: translateY(-1px);
}

/* Ensure content doesn't hide behind controls */
body {
  padding-bottom: 0;
}

#floating-copy-controls .copy-input-group {
  flex: 1;
  margin: 0;
}

#floating-copy-controls .copy-input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
}

#floating-copy-controls .copy-buttons {
  display: flex;
  gap: 10px;
}

#floating-copy-controls .copy-buttons button {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  background: white;
  color: black;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

#floating-copy-controls .copy-buttons button:hover {
  transform: translateY(-2px);
}

.menu a:hover {
  background: var(--hunter-green);
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  animation: slideIn 0.5s ease-in-out;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: visible;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--crushed-berry);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 10px;
}

.gallery h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--fern), transparent);
}
main .symbol-container .gallery-description {
  margin-top: -3%;
}

.gallery b {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  background: white;
  border-radius: 8px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
}

.gallery b.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery b::before {
  content: attr(data-name);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.95),
    rgba(26, 26, 26, 0.95)
  );
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
  font-weight: 400;
}

.gallery b::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(44, 44, 44, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: -1px;
}

.gallery b:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}

.gallery b:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-2px);
}

.gallery b:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Header Search Input */
.search-container input,
#symbol-search {
  color: #000; /* Set text color to black */
}

.search-container input::placeholder,
#symbol-search::placeholder {
  color: #666; /* Or any other suitable color */
  opacity: 1; /* Ensure the placeholder is visible */
}

/* Header Search Input */
.search-container input::placeholder {
  color: #666; /* Or any other suitable color */
  opacity: 1; /* Ensure the placeholder is visible */
}

/* Header Search Input */
#symbol-search::placeholder {
  color: #666; /* Or any other suitable color */
  opacity: 1; /* Ensure the placeholder is visible */
}
#copy-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--crushed-berry);
  color: white;
  width: 100%;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

#copy-controls input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  flex-grow: 1;
  background: #e0e0e0;
  transition: background 0.3s;
}

#copy-controls input:focus {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#copy-controls button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: var(--raspberry);
  color: white;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

#copy-controls button:hover {
  background: var(--crushed-berry);
  transform: scale(1.1);
}

#copy-status {
  display: none;
  padding: 5px 10px;
  background: var(--fern);
  color: white;
  border-radius: 5px;
  position: absolute;
  top: -40px;
  right: 20px;
  animation: popUp 0.5s ease-in-out;
}

@keyframes popUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.symbol-container {
  margin-top: 20px;
}

/* Dynamic Footer for SEO Content (Dark Theme with Enhanced Spacing) */
#dynamic-footer {
  background: var(--dust-grey); /* Dark background */
  padding: 40px 30px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
  width: 100%;
}

#dynamic-footer h2 {
  color: var(--crushed-berry);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#footer-description p {
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px; /* Increased margin-bottom for better line spacing */
  font-size: 1.1rem;
}

.copy-guidance {
  font-style: italic;
  color: #aaa;
  margin-top: 10px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .gallery {
    gap: 10px;
    padding: 15px;
  }

  .gallery b {
    font-size: 20px;
    padding: 8px;
  }

  #copy-controls {
    flex-direction: column;
    padding: 15px;
  }

  #copy-controls input {
    width: 100%;
    margin-bottom: 10px;
  }

  .menu button {
    font-size: 14px;
    padding: 8px 12px;
  }

  #dynamic-footer {
    padding: 20px 15px;
  }

  #footer-description p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .copy-guidance {
    font-size: 0.8rem;
  }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery {
    gap: 12px;
  }

  .gallery b {
    font-size: 22px;
  }

  #dynamic-footer {
    padding: 30px 20px;
  }
}

/* Touch device optimization */
@media (hover: none) {
  .gallery b:hover {
    transform: none;
  }

  .gallery b:active {
    transform: scale(1.1);
  }
}

/* Add animation for successful copy */
@keyframes copySuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.copy-success {
  animation: copySuccess 0.3s ease-in-out;
}

/* Add hover effects for symbols */
.gallery b {
  transition: all 0.3s ease;
}

.gallery b:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Add category filter buttons */
.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.filter-button {
  padding: 8px 16px;
  border-radius: 20px;
  background: #2c2c2c;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button:hover {
  background: var(--raspberry);
}

/* Search functionality styling */
.search-container {
  margin: 20px auto;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#symbol-search {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--fern);
  border-radius: 25px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#symbol-search:focus {
  outline: none;
  border-color: var(--hunter-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-result-item {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #f8f9fa;
}

.search-result-symbol {
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 8px;
  transition: transform 0.2s ease;
}

.search-result-item:hover .search-result-symbol {
  transform: scale(1.1);
}

.search-result-name {
  font-size: 14px;
  color: #333;
  flex: 1;
}

.search-result-category {
  font-size: 12px;
  color: #666;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Selected state styling */
.search-result-item.selected {
  background: var(--raspberry);
}

.search-result-item.selected .search-result-symbol {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.search-result-item.selected .search-result-name {
  color: white;
}

.search-result-item.selected .search-result-category {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .search-result-item {
    padding: 10px 15px;
  }

  .search-result-symbol {
    font-size: 20px;
    min-width: 36px;
    height: 36px;
  }

  .search-result-name {
    font-size: 13px;
  }
}

/* Add scroll styling for search results */
.search-results::-webkit-scrollbar {
  width: 8px;
}

.search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Symbol Category Styles */
.symbol-category {
  margin-bottom: 50px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.symbol-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.category-title {
  color: #2c3e50;
  font-size: 2rem;
  margin: 0 auto 20px;
  padding-bottom: 15px;
  text-align: center;
  border-bottom: 2px solid #eaeaea;
  position: relative;
  max-width: 80%;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
}

.category-description {
  color: #555;
  line-height: 1.7;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
}

@media (max-width: 768px) {
  .symbol-category {
    padding: 15px;
    margin-bottom: 30px;
  }

  .symbol-category h1 {
    font-size: 1.5rem;
  }
}

/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

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

h1,
h2,
h3 {
  color: #333;
}

/* Styles for SEO Media Section */
.seo-media-section {
  padding: 40px 0;
  background-color: #ffffff; /* White background for contrast */
  text-align: center;
  border-top: 1px solid #e0e0e0;
  width: 100%; /* Ensure it spans full width */
}

/* Override container max-width within this specific section */
.seo-media-section .container {
  max-width: none; /* Remove max-width constraint */
  width: 90%; /* Maintain some padding from screen edges */
  margin: 0 auto;
}

.seo-media-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #444;
}

.media-content {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  justify-content: center; /* Center items */
  gap: 30px; /* Space between items */
}

.media-item {
  flex-basis: 45%; /* Each item takes up roughly half the width */
  max-width: 500px; /* Max width for each item */
  text-align: center;
  background-color: #f8f9fa; /* Light grey background for items */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.media-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #555;
}

.media-item img,
.media-item video {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.media-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive adjustments for media section */
@media (max-width: 768px) {
  .media-item {
    flex-basis: 80%; /* Take up more width on smaller screens */
    max-width: 90%;
  }
  .seo-media-section h2 {
    font-size: 1.8rem;
  }
  .media-item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .media-item {
    flex-basis: 100%; /* Stack items vertically */
  }
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2147483647; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.85); /* Black w/ opacity */
  animation: fadeIn 0.3s ease-in-out;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 85vh;
  animation: zoomIn 0.3s ease-in-out;
}

/* Style for the video inside the lightbox */
#lightbox-video {
  margin: auto;
  display: block; /* Changed from none */
  max-width: 85%;
  max-height: 80vh; /* Slightly less height for controls potentially */
  display: none; /* Hide by default, shown via JS */
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  height: 50px; /* Fixed height to prevent layout shift */
}

/* Add Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive adjustments for lightbox */
@media (max-width: 700px) {
  .lightbox-content {
    max-width: 95%;
  }
  #lightbox-caption {
    width: 90%;
  }
}

/* FAQ Section Styles */
.faq-section {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--dust-grey);
}

.faq-section h2 {
  text-align: center;
  color: var(--pine-teal);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05); /* Subtle border */
}

.faq-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pine-teal);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(163, 177, 138, 0.1); /* --dry-sage with opacity */
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--fern);
}

.faq-item.active .faq-question {
  background-color: rgba(163, 177, 138, 0.2);
  color: var(--hunter-green);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.faq-answer p {
  padding: 1.2rem;
  margin: 0;
  color: #4a5568; /* Fallback text color */
  line-height: 1.6;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
}
