.accordion-section {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #0a2342; /* solid dark blue */
  color: #fff;
  padding: 10px 15px;
  font-weight: 400;
  font-family: inherit;
  border-radius: 0;
  border: none;
}

.accordion-toggle {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}

.accordion-content img, .accordion-content iframe {
  display: block;
  max-width: 500px; /* Reduced size for images/iframes */
  width: 100%;
  height: auto;
  margin: 0 0 12px 0; /* Adjusted margin for spacing */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #fff;
  flex: none; /* Prevent flex items from growing */
}
.accordion-content .MSStartup {
  max-width: 400px;    /* Set your desired width */
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.accordion-content .FullResults {
  max-width: 900px;    /* Set your desired width */
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.accordion-content .Impression {
  max-width: 900px;    /* Set your desired width */
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.accordion-content .WebsitePic {
  max-width: 900px;    /* Set your desired width */
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.farmland-container {
  display: block;
  margin-top: 20px;
}

.farmland-text {
  margin-bottom: 16px;
}

.farmland-photo-box {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.Tryit {
  width: 120px;
  height: 120px;
  border-radius: 0%;
}
.farmland-photo-box iframe {
  max-width: 100%;
  width: 900px;         /* or 100% for full container width */
  height: 574px;        /* adjust as needed */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-top: 8px;
  background: #fff;
}
.farmland-photo-box h2 {
  margin-top: 10;
  margin-bottom: 0 px;
}
.farmland-photo-box p {
  margin-top: 0;
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .accordion-content {
    flex-direction: column;
    gap: 16px;
  }
  .accordion-content img, .accordion-content iframe {
    max-width: 100%;
    flex-basis: 100%;
  }
}
