* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html, body {
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  height: 100vh;
  margin: 0; /* Removes default margin */
  margin-top: 10px;
  align-items: center; /* Centers content vertically */
  
}
.tab{text-align: center;}
.list-group-item.active, .list-group-item.active:hover {
  background-color: rgb(128, 85, 128);
  border-color: #e9cdec;
  color: #fff;
}
.list-style-1{
  list-style: square;
}
.list-style-2{
  list-style: square;margin-left: 35px;
}
.video-card{width: 400px;margin-left: 60px;margin-bottom: 10px;}
.link-style{
  color:#EC5800;
  text-decoration: underline;
}

.container {
  /* Styles for the content container */
  width: 90%;
  max-width: 1500px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 10;
  border-bottom: 1px solid #e1e1e1;
}
.left-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 6rem;
}
.menu-icon, .home-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 35px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.home-icon {
  background-color: #FF4F35;
  color: white;
}
.right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 0.2rem;
}
.title {
  text-align: right;
  margin-bottom: 0.2rem;
}
.title span {
  display: inline-block;
  text-align: right;
  line-height: 1.2;
  font-weight: normal; 
}
.title span div {
  font-weight: normal; 
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}
.search-bar {
  position: relative;
  width: 100%;
  max-width: 150px; 
}
.search-bar input {
  padding: 0.3rem 1.8rem 0.3rem 0.8rem; 
  border-radius: 1.5rem; 
  border: 1px solid #ccc;
  font-size: 0.75rem;
  width: 100%;
}
.search-icon {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 0; 
}
.search-icon i {
  font-size: 12px; 
}
.layout {
  display: flex;
  flex: 1;
  padding: 1rem;
  gap: 2rem;
  overflow: hidden;
}
.sidebar {
  display: flex;
  flex-direction: column;
  width: 300px;
  min-width: 250px;
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #000;
  background: white;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.2s ease;
}
.nav-btn.active, .nav-btn:hover {
  background-color: #FF4F35;
  color: black;
}
.main-area {
  flex: 1;
  border: 1px solid #000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.tabs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: black;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: background 0.3s ease;
  min-height: 36px;
  font-size: 0.90rem;
}
.tab.active-tab {
  color: #FF4F35;
  font-weight: 600;
  background-color: #fff;
}
.tab.active-tab::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.tab.active-tab:has(img)::after {
  content: none;
}
.section {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.content-wrapper {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  flex-wrap: wrap;
}
.content-wrapp {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  margin-left: 0.2rem;
  flex-wrap: wrap;
}
.text-content {
  flex: 1 1 300px;
}
.image-content {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}
.marketplace-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}
.button-container {
  margin-top: 1.5rem;
}
.black-button {
  background: #000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.black-button:hover {
  background: #333;
}
select#help-select {
  padding: 10px;
  width: 100%;
  max-width: 400px;
  font-size: 15px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px 18px;
  padding-right: 2.5rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
td {
  border: 1px solid #000;
  padding: 10px;
  word-wrap: break-word;
  font-size: 0.9rem;
}
.footer {
  padding: 0.3rem 1.5rem; /* reduced top & bottom padding */
  border-top: 1px solid #e1e1e1;
  text-align: right;
  background-color: #fff;
}

.footer-branding {
  display: inline-block;
  line-height: 1.1;
}

.myer-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05rem;
  color: #000;
  font-family: Arial, sans-serif;
}
.custom-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #4a4a4a;
  font-family: 'Arial', sans-serif;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.custom-bullet {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.left-panel {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex: 1 1 60%;
}

.myer-logo-img {
  width: 90px;
  height: 100%;
  object-fit: contain;
}

.welcome-text {
  max-width: 100%;
}

.welcome-text h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.welcome-heading {
  color: #000;
}

.highlight-text {
  color: #FF4F35;
  font-weight: 600;
  font-size: 2rem;
}

.welcome-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.welcome-text a {
  color: #0056b3;
  text-decoration: underline;
}

.button-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.get-started-btn {
  background-color: #FF4F35;
  color: white;
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  
}

.get-started-btn:hover {
  background-color: #FF4F35;
}


.right-panel {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woman-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
}


@media (max-width: 768px) {
  html, body {
    font-size: 13px;
  }
  .layout {
    flex-direction: column;
    padding: 1rem 0.5rem;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .nav-btn {
    flex: 1 1 48%;
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
  }
  .left-icons {
    margin-bottom: 0;
  }
  .right-content {
    width: 100%;
    align-items: flex-start;
  }
  .title {
    text-align: left;
    margin-bottom: 1rem;
  }
  .search-bar {
    width: 100%;
    max-width: 100%;
  }
  .search-bar input {
    font-size: 0.75rem;
    padding: 0.4rem 1.8rem 0.4rem 0.8rem;
  }
  .search-icon i {
    font-size: 1rem;
  }
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .tab {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
  }
  .main-area {
    padding: 1rem;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .image-content {
    order: -1;
    justify-content: center;
  }
  .custom-heading {
    font-size: 1.4rem;
  }
  .black-button {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  table,
  td {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .footer {
    text-align: center;
    padding: 1rem;
  }
  .myer-logo {
    font-size: 1.5rem;
  }
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: #c0c0c0;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .welcome-container {
    flex-direction: column;
    text-align: left;
  }
  .welcome-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .myer-vertical {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .welcome-text h2 {
    font-size: 1.5rem;
  }
  .welcome-text p {
    font-size: 0.9rem;
  }
  .get-started-btn {
    width: 100%;
    text-align: center;
  }
}
