/* Reset global RGE styles for studio landing page (Webflow export) */
/* This prevents site-wide styles from conflicting with Webflow's styles */

.studio-page,
.studio-page * {
  box-sizing: border-box;
}

/* Reset only specific properties that RGE globals might override */
/* Do NOT use 'all: unset' as it strips Webflow's styling */

.studio-page p {
  margin: 0;
  padding: 0;
}

.studio-page h1,
.studio-page h2,
.studio-page h3,
.studio-page h4,
.studio-page h5,
.studio-page h6 {
  margin: 0;
  padding: 0;
}

/* Reset link styles */
.studio-page a {
  text-decoration: none;
  color: inherit;
}

/* Reset list styles */
.studio-page ul,
.studio-page ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Reset form elements */
.studio-page input,
.studio-page button,
.studio-page textarea,
.studio-page select {
  font-family: inherit;
  font-size: inherit;
}

/* Hide FAQ answers by default (controlled by JS) */
.studio-page .faq4_answer {
  overflow: hidden;
  transition: height 0.35s ease;
}

/* FAQ icon rotation transition */
.studio-page .faq4_icon-wrappper {
  transition: transform 0.35s ease;
}
