* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: "Figtree", sans-serif;
}

.container {
  max-width: 1140px;
  margin: 20px auto;
  background-color: #fff;
  width: 100%;
}

.elementor-tabs {
  display: grid;
  grid-template-columns: 0.6fr 1.7fr;
  background: #fff;
}

.elementor-tabs-wrapper {
  display: flex;
  flex-direction: column;
  width: 300px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: #4c4c4c;
}

.elementor-tab-title {
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
}

.elementor-tab-title.elementor-active {
  background-color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  margin-left: -1px;
  z-index: 1;
  overflow: hidden;
  width: 302px;
}

.elementor-tabs-content-wrapper {
  min-height: 500px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ddd;
}

.elementor-tab-content {
  display: none;
  background: #fff;
}

.elementor-tab-content.active {
  display: block;
}

.elementor-tab-content iframe {
  border: none;
  width: 100%;
  display: block;
}

.mobile-content {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
}

.mobile-content iframe {
  border: none;
  width: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .container {
    border: 1px solid #ccc;
  }
  
  .elementor-tabs {
    display: block;
  }
  
  .elementor-tabs-wrapper {
    width: 100%;
    display: block;
  }
  
  .elementor-tab-title {
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-bottom: none;
    margin: 0;
    width: 100%;
  }
  
  .elementor-tab-title:last-of-type {
    border-bottom: 1px solid #ddd;
  }
  
  .elementor-tab-title.elementor-active {
    background-color: #94104e;
    color: #fff;
    border-color: #94104e;
    width: 100%;
    margin: 0;
  }

  .elementor-tab-title.elementor-active + .mobile-content {
    display: block;
  }
  
  .elementor-tabs-content-wrapper {
    display: none;
  }
  
  .mobile-content {
    border-top: none;
  }
}