/* UX/UI section styles for Figma prototypes */
#uxui-section {
  margin-top: 4rem;
  padding: 2rem 0;
  background: transparent;
  border-radius: 16px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#uxui-section .heading {
  font-size: var(--desktop-large-Fsize, 4.375rem);
  color: var(--primary-color, #fff);
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: 2px;
  font-family: 'Poppins', 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: none;
}
#uxui-section .heading span {
  color: var(--accent-color, #00bcd4);
  margin-bottom: 2rem;
}
.uxui-figma-iframe {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  height: 600px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .uxui-figma-iframe {
    width: 100%;
    height: 400px;
    max-width: 100vw;
  }
}
