/* SimSurveys Custom CSS - Replaces Webflow Dependencies */

/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Chakra Petch", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utility classes */
.show-tablet {
  display: none;
}

.hide-tablet {
  display: block;
}

@media (max-width: 991px) {
  .show-tablet {
    display: block;
  }
  .hide-tablet {
    display: none;
  }
}

/* Layout containers */
.page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.content-container-large {
  max-width: 1440px;
  margin: 0 auto;
}

.container-vertical-padding-2rem {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.container-vertical-padding-3rem {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container-vertical-padding-3-75rem {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.container-vertical-padding-5rem {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Navigation */
.navbar-section {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.navbar-section .content-container-large {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.navbar-menu-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-menu-link {
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navbar-menu-link:hover {
  color: #111827;
}

.navbar-menu-link.w--current {
  color: #111827;
  font-weight: 600;
}

/* Dropdown menu */
.navbar-menu-dropdown {
  position: relative;
}

.navbar-menu-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.navbar-menu-dropdown-toggle:hover {
  color: #111827;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
}

.navbar-menu-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 400px;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.navbar-menu-dropdown:hover .navbar-menu-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-menu-dropdown-link-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.navbar-dropdown-link-simulated-data,
.navbar-dropdown-link-augmented-data,
.navbar-dropdown-link-instant-insights {
  display: block;
  padding: 1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.navbar-dropdown-link-simulated-data:hover,
.navbar-dropdown-link-augmented-data:hover,
.navbar-dropdown-link-instant-insights:hover {
  background-color: #f9fafb;
}

.navbar-dropdown-link-simulated-data-heading,
.navbar-dropdown-link-augmented-data-heading,
.navbar-dropdown-link-instant-insights-heading {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.navbar-dropdown-link-simulated-data-description,
.navbar-dropdown-link-augmented-data-description,
.navbar-dropdown-link-instant-insights-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Mobile menu button */
.uui-navbar07_menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}

.menu-icon_component {
  width: 24px;
  height: 18px;
  position: relative;
}

.menu-icon_line-top,
.menu-icon_line-middle,
.menu-icon_line-bottom {
  height: 2px;
  background-color: #374151;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-icon_line-top {
  position: absolute;
  top: 0;
  width: 100%;
}

.menu-icon_line-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.menu-icon_line-middle-inner {
  height: 100%;
  background-color: #374151;
  border-radius: 1px;
}

.menu-icon_line-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding: 2rem;
  }
  
  .navbar-menu.mobile-open {
    transform: translateX(0);
  }
  
  .navbar-menu-left {
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
  }
  
  /* Show mobile menu button on mobile devices */
  .uui-navbar07_menu-button {
    display: flex;
  }
  
  /* Mobile auth buttons */
  .navbar-menu-link[href*="login"],
  .navbar-menu-link[href*="register"] {
    margin-left: 0 !important;
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
  }
  
  .navbar-menu-dropdown-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .navbar-menu-dropdown.mobile-dropdown-open .navbar-menu-dropdown-list {
    max-height: 300px;
  }
  
  .uui-navbar07_menu-button.active .menu-icon_line-top {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .uui-navbar07_menu-button.active .menu-icon_line-middle {
    opacity: 0;
  }
  
  .uui-navbar07_menu-button.active .menu-icon_line-bottom {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* Buttons */
.main-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #111827;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.main-dark-button:hover {
  background-color: #1f2937;
  transform: translateY(-1px);
}

.services-button {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Hero section */
.hero-banner-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-banner-content {
  max-width: 600px;
}

.hero-banner-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #111827;
}

.hero-banner-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-banner-image-wrapper-inner-page {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-blog {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-banner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-banner-title {
    font-size: 2.5rem;
  }
  
  .hero-banner-description {
    font-size: 1.125rem;
  }
}

/* Features section */
.features-section {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.features-title-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.features-full-card {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}

.features-full-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Services section */
.services-section {
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.services-description {
  padding: 2rem;
}

.services-description-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.services-description-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
}

.services-simulated-data,
.services-instant-insights,
.services-augmented-data {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-simulated-data-heading,
.services-instant-insights-heading,
.services-augmented-data-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.services-simulated-data-description,
.services-instant-insights-description,
.services-augmented-data-description {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.div-block-5 {
  margin-top: auto;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog section */
.blog-posts-section {
  background: #fff;
}

.blog-posts-grid {
  text-align: center;
}

.blog-posts-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.blog-posts-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-post-image-wrapper {
  overflow: hidden;
}

.blog-post-content-container {
  padding: 2rem;
}

.blog-post-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
  line-height: 1.3;
}

.blog-post-description {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111827;
  font-weight: 600;
  transition: color 0.2s ease;
}

.blog-post-link:hover {
  color: #4b5563;
}

.blog-post-link-text {
  color: inherit;
}

.uui-button-icon-2 {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.blog-post-link:hover .uui-button-icon-2 {
  transform: translateX(2px);
}

/* Typography */
.heading_h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111827;
}

.heading_h3 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #111827;
}

.heading_h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.paragraph {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Page-specific sections */
.hero-banner-section.service-page {
  padding: 3rem 0 4rem;
}

.blog-page-heading {
  background: #f8fafc;
  padding: 3rem 0;
  text-align: center;
}

.inner-page-heading-container {
  max-width: 800px;
  margin: 0 auto;
}

.inner-page-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.fulltext-page-section {
  background: #fff;
}

.div-block-6 {
  max-width: 800px;
  margin: 0 auto;
}

.w-richtext {
  color: #374151;
  line-height: 1.7;
}

.w-richtext h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 2rem 0 1rem;
}

.w-richtext h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 1.5rem 0 0.75rem;
}

.w-richtext p {
  margin-bottom: 1rem;
}

.w-richtext ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.w-richtext li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer-section {
  background: #111827;
  color: #d1d5db;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid-description {
  max-width: 400px;
}

.footer-logo {
  height: 35px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.5;
  font-size: 0.9rem;
}

.footer-grid-links {
  display: flex;
  gap: 1.5rem;
}

.footer-grid-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-grid-links-list-heading {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.footer-grid-link {
  color: #9ca3af;
  transition: color 0.2s ease;
  font-size: 0.9rem;
  line-height: 1.3;
}

.footer-grid-link:hover {
  color: #d1d5db;
}

.footer-grid-subsribe {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-grid-subsription-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-textarea {
  min-height: 70px;
  resize: vertical;
  font-family: inherit;
}

/* Ensure form inputs have consistent styling */
.footer-subsription-form-input {
  margin-bottom: 0;
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
}

.footer-grid-subsription-form .fotter-white-button {
  margin-top: 6px;
}

.fotter-white-button {
  padding: 0.6rem 1rem;
  background: #fff;
  color: #111827;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.9rem;
}

.fotter-white-button:hover {
  background: #f3f4f6;
}

.text-block {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.3;
}

.uui-text-style-link {
  color: #d1d5db;
  text-decoration: underline;
}

.success-message,
.error-message {
  padding: 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  display: none;
}

.success-message {
  background: #065f46;
  color: #d1fae5;
}

.error-message {
  background: #991b1b;
  color: #fecaca;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .inner-page-heading {
    font-size: 2.5rem;
  }
  
  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-section {
    padding: 2rem 0;
  }
}

/* Form styles for auth pages */
.w-users-userformpagewrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 2rem;
}

.w-users-usersignupformwrapper,
.w-users-userloginformwrapper {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.w-users-userformheader {
  text-align: center;
  margin-bottom: 2rem;
}

.w-users-userformheader h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0.5rem 0 0;
}

.w-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
  color:black
}

.w-input:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

.w-users-userformbutton {
  width: 100%;
  padding: 0.75rem;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.w-users-userformbutton:hover {
  background: #1f2937;
}

.w-users-userformfooter {
  text-align: center;
  margin-top: 1rem;
  color: #6b7280;
}

.w-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.w-checkbox-input {
  margin-top: 0.25rem;
}

.w-form-label {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Collection lists and dynamic content */
.w-dyn-list {
  margin-top: 2rem;
}

.collection-list-2 {
  display: grid;
  gap: 2rem;
}

.collection-item-2 {
  max-width: 600px;
  margin: 0 auto;
}

.w-dyn-empty {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 2rem;
}

/* Hide/show classes for dynamic states */
.w-users-userformsuccessstate,
.w-users-usersignupverificationmessage,
.w-users-userformerrorstate {
  display: none;
}

.w-users-userformsuccessstate.w-form-success,
.w-users-usersignupverificationmessage.w-form-verification,
.w-users-userformerrorstate.w-form-fail {
  display: block;
}

/* Additional utility classes */
.w-inline-block {
  display: inline-block;
}

.w--current {
  /* Current page/state styling handled by specific selectors */
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-banner-title {
    font-size: 2rem;
  }
  
  .heading_h1 {
    font-size: 2rem;
  }
  
  .hero-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .main-dark-button {
    justify-content: center;
  }
}

/* Animation classes */
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Enhanced hover effects */
.features-full-card,
.services-simulated-data,
.services-instant-insights,
.services-augmented-data {
  transition: all 0.3s ease;
  opacity: 0.8;
  transform: translateY(20px);
}

.features-full-card.animate-in,
.services-simulated-data.animate-in,
.services-instant-insights.animate-in,
.services-augmented-data.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Focus styles for accessibility */
.navbar-menu-link:focus,
.main-dark-button:focus,
.navbar-menu-dropdown-toggle:focus {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar-section,
  .uui-navbar07_menu-button {
    display: none;
  }
  
  .page-padding {
    padding: 0;
  }
  
  .main-dark-button {
    border: 1px solid #000;
    color: #000 !important;
    background: transparent !important;
  }
}

/* Navigation auth buttons */
.navbar-menu-link[href*="login"] {
  transition: all 0.2s ease;
}

.navbar-menu-link[href*="login"]:hover {
  background: #f3f4f6 !important;
  border-color: #9ca3af !important;
}

.navbar-menu-link[href*="register"] {
  transition: all 0.2s ease;
}

.navbar-menu-link[href*="register"]:hover {
  background: #5a67d8 !important;
  transform: translateY(-1px);
}

/* About page specific styles */
.comparison-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.comparison-table-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.comparison-table-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-table-item-minus,
.comparison-table-item-plus {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.comparison-table-item-minus {
  border-left: 4px solid #ef4444;
}

.comparison-table-item-plus {
  border-left: 4px solid #10b981;
}

.comparison-table-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-table-item-content {
  flex: 1;
  text-align: left;
}

.comparison-table-item-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.comparison-table-item-description {
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }
  
  .comparison-table-title {
    font-size: 2rem;
  }
}

/* Team section styles */
.about-team-section {
  background: #fff;
  padding: 3rem 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.about-team-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}

.about-team-grid-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-team-description {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.team-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-member {
  display: flex;
  gap: 1.5rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.team-member-image-wrapper {
  flex-shrink: 0;
}

.team-member-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member-desription-wrapper {
  flex: 1;
}

.team-member-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.team-member-title {
  font-weight: 500;
  color: #667eea;
  margin-bottom: 0.75rem;
}

.team-member-description {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-team-grid-title {
    font-size: 2rem;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ section styles */
.faq-section {
  background: #f8fafc;
  padding: 3rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.faq-grid-left {
  position: sticky;
  top: 2rem;
}

.faq-grid-description {
  text-align: left;
}

.faq-grid-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.faq-grid-right {
  display: flex;
  flex-direction: column;
}

.faq-grid-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uui-faq01_accordion {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.uui-faq01_question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.uui-faq01_question:hover {
  background: #f8fafc;
}

.uui-faq01_heading {
  font-weight: 600;
  color: #111827;
  flex: 1;
}

.uui-faq01_icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon_component {
  position: relative;
  width: 16px;
  height: 16px;
}

.accordion-icon_horizontal-line,
.accordion-icon_vertical-line {
  position: absolute;
  background: #374151;
  transition: all 0.3s ease;
}

.accordion-icon_horizontal-line {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-icon_vertical-line {
  width: 2px;
  height: 16px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.uui-faq01_answer {
  padding: 0 1.5rem 1.5rem;
  overflow: hidden;
  transition: height 0.3s ease;
}

.uui-text-size-medium {
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-grid-left {
    position: static;
  }
  
  .faq-grid-heading {
    font-size: 1.75rem;
  }
}

/* Mobile navigation styles */
@media (max-width: 991px) {
  .uui-navbar07_menu-button {
    display: flex;
  }
}

/* Innovation section responsive styles */
@media (max-width: 991px) {
  .innovation-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .innovation-section h2 {
    font-size: 2rem !important;
  }
  
  .innovation-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 479px) {
  .innovation-section h2 {
    font-size: 1.75rem !important;
  }
  
  .innovation-stats {
    grid-template-columns: 1fr !important;
  }
  
  .patent-details {
    padding: 1.5rem !important;
  }
  
  .innovation-visual > div {
    padding: 2rem !important;
  }
}

.footer-section .container-vertical-padding-2rem {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
} 