/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Content */
.content {
    padding: 20px;
    max-width: 80%;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Content */
.doc-content {
    text-align: left;
    padding: 20px;
    max-width: 80%;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}


.iframe-container {
    text-align: left;
    font-family: Arial, sans-serif;
}

/* FAQ Section Styling */
.faq-item {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px 0;
    transition: background-color 0.3s ease-in-out;
}

.faq-item:hover {
    background-color: #e9ecef;
}

.answer {
    display: none;
    padding: 10px;
    border-left: 3px solid #000000;
    background-color: #f1f1f1;
    margin-bottom: 15px;
    border-radius: 5px;
}

.answer p, .answer ul {
    margin: 5px;
    padding: 5px 0;
    list-style-type: none;
}


.item-container {
  display: flex;
  align-items: center;       /* vertical alignment */
  justify-content: center;   /* horizontal centering */
  gap: 0.5rem;               /* spacing between text and image */
  width: 100%;
  padding: 1rem;
  text-decoration: none; /* Remove underline */
  color: inherit;         /* Inherit text color */
}

.item-title {
  font-size: 1.8rem;
  white-space: nowrap;       /* prevents wrapping of short titles */
  font-weight: normal;
}

.item-logo {
  height: 3.0rem;            /* or use max-height for flexibility */
  width: auto;               /* maintain aspect ratio */
}

.item-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

.item-image {
  flex: 0 0 50%;
  max-width: 50%;
}

.item-image img {
  width: 100%;
  height: auto;
  max-height: 300px; /* Adjust as needed to standardize image heights */
  object-fit: contain; /* Ensures image doesn’t distort */
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-text {
  flex: 1;
  max-width: 50%;
}

.item-text-description {
  text-align: left; 
}

.item-text h1 {
  margin-top: 0;
}

.meta {
  font-style: italic;
  color: #666;
}

@media (max-width: 600px) {
  .item-layout {
    flex-direction: column;
  }
  .item-image, .item-text {
    max-width: 100%;
    flex: none;
  }
}

.app-download {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
}

.badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  height: 40px;
  transition: transform 0.2s ease;
}

.store-badge:hover {
  transform: scale(1.05);
}

.coming-soon {
  pointer-events: none;
  opacity: 0.5;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #888;
}