/* Reset e stili base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0e1a40;
  --primary-orange: #f37620;
  --secondary-blue: #283270;
  --light-blue: #e8eaf6;
  --dark-blue: #0a1232;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #7a7a7a;
  --dark-gray: #333333;
  --black: #000000;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* Header */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logos {
  display: flex;
  align-items: center;
  max-width: 300px;
}

.logo {
  max-width: 140px;
  height: auto;
}

.plus-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.plus {
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 300;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .logo {
    max-width: 160px;
  }
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  padding: 5px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 25px;
    border-radius: 4px;
    transition: var(--transition);
  }

  .header-cta:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
  }
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 160px 0 120px; /* Increased bottom padding for scroll indicator */
  background-color: var(--primary-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.ampersand {
  color: var(--primary-orange);
  font-size: 1.1em;
  display: inline-block;
  margin: 0 0.05em;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-link {
  color: var(--primary-orange);
}

.hero-link:hover {
  text-decoration: underline;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 30px;
  border: 2px solid var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.scroll-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* Section Styles */
section {
  padding: 100px 0;
  position: relative;
}

/* Change the section-header styling to position labels above titles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 6px 15px;
  margin-bottom: 15px;
  border-radius: 3px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-orange);
}

.section-subtitle,
.section-desc {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--mid-gray);
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
}

.about-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-card-content {
  padding: 40px;
}

.about-card-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 15px;
}

.about-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-orange);
}

/* Partnership Vision */
.partnership-vision {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .partnership-vision {
    flex-direction: row;
    align-items: center;
  }

  .vision-text {
    flex: 3;
    padding-right: 40px;
  }

  .vision-illustration {
    flex: 2;
  }
}

.vision-text p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.vision-text p strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Data Integration Visualization */
.data-integration {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.company-circle:hover {
  transform: scale(1.05);
}

.telco-circle {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  left: calc(50% - 160px);
}

.loci-circle {
  background: linear-gradient(135deg, var(--primary-orange), #ff9a56);
  right: calc(50% - 160px);
}

.company-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.data-points {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  margin-top: 10px;
}

.data-points li {
  margin-bottom: 8px;
  font-weight: 500;
}

/* Partnership Goals */
.goals-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.partnership-goals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .partnership-goals {
    grid-template-columns: repeat(2, 1fr);
  }
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--light-blue);
  border-radius: 8px;
  transition: var(--transition);
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.goal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue);
  border-radius: 8px;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}

.goal-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.partnership-conclusion {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  font-size: 1rem;
  color: var(--dark-gray);
}

/* Demos Section */
.demos-section {
  background-color: var(--white);
}

.demos-navigation {
  margin-bottom: 50px;
}

.navigation-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--light-gray);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  transition: var(--transition);
}

.nav-pill i {
  color: var(--primary-blue);
}

.nav-pill:hover,
.nav-pill:focus {
  background-color: var(--light-blue);
  color: var(--primary-blue);
}

.nav-pill.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.nav-pill.active i {
  color: var(--white);
}

.demo-section {
  display: none;
  margin-bottom: 60px;
}

.demo-section.demo-active {
  display: block;
}

.demo-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.demo-info-wrapper {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.demo-tag {
  display: inline-block;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.demo-title {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.demo-description {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.demo-benefits {
  margin-bottom: 30px;
}

.demo-benefit {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.demo-benefit .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-blue);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.benefit-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.benefit-info p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 25px;
  border-radius: 4px;
  transition: var(--transition);
}

.demo-cta:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.demo-iframe-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f8f8;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 500px;
}

.iframe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s;
}

.iframe-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 50px;
  height: 50px;
}

.spinner .path {
  stroke: var(--primary-blue);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* About Us Section */
.about-us-section {
  background-color: var(--light-gray);
}

.company-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .company-cards {
    flex-direction: row;
  }
}

.company-card {
  flex: 1;
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 30px;
}

.company-logo img {
  max-height: 100%;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 10px;
}

.company-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-orange);
}

.company-description {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.company-services {
  margin-top: 20px;
}

.company-services li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.company-services li i {
  color: var(--primary-orange);
  font-size: 0.85rem;
}

.company-services li span {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.company-links {
  margin-top: 25px;
}

.company-link {
  margin-bottom: 10px;
}

.company-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  transition: var(--transition);
}

.company-link a:hover {
  color: var(--primary-orange);
}

.company-link i {
  width: 20px;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-blue);
  color: var(--white);
}

.contact-section .section-title,
.contact-section .section-desc {
  color: var(--white);
}

.contact-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-form-container.full-width {
  width: 100%;
  max-width: 800px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 640px) {
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  background-color: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--primary-orange);
  text-decoration: underline;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 15px;
}

.btn-submit:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  padding: 80px 0 30px;
  color: var(--white);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
  }
}

.footer-branding {
  flex: 1;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-links-column h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
}

.footer-links-column h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-orange);
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-column a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links-column a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.legal-links a:hover {
  color: var(--primary-orange);
}

/* Back To Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 300;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-orange);
  transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .company-circle {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-bottom: 20px;
  }

  .data-integration {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }
}
