.blogsHero {
  padding-top: 60px !important;
}

.blogPage {
  padding: 60px 0;
  background-color: #fff;
}

.blogHeader {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blogTitle {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blogSubtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.blogContent {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.blogGrid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blogCard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.blogCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blogImageContainer {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blogImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blogCard:hover .blogImage {
  transform: scale(1.05);
}

.blogCategory {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(105, 72, 249, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blogCardContent {
  padding: 25px;
}

.blogCardTitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blogMeta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.readMoreBtn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #111;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.readMoreBtn:hover {
  background: #6948f9;
  transform: scale(1.1);
}

.blogDetailPage {
  padding: 60px 0 80px;
  background-color: #fff;
}

.blogDetailPage .ml-blogs-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.blogsHero .blogPage .ml-blogs-grid,
body .blogPage .ml-blogs-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid !important;
}

.blogCatsContainer {
  flex: 0 0 290px;
  background: #f5f3f8;
  border-radius: 20px;
  padding: 40px 21px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.blogCatsHeader {
  margin-bottom: 15px;
}
.blogCatsTitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.blogCatsList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blogCatsItem {
  border-bottom: none;
  padding-bottom: 0;
}

.blogCatsButton {
  width: 100%;
  background: white;
  border: none;
  padding: 12px 16px;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}

.active .blogCatsButton {
  background: white;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    #6948f9 0%,
    #f85efe 30%,
    #a10187 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .blogContent {
    flex-direction: column;
    gap: 30px;
  }

  .blogsHero .blogPage .ml-blogs-grid,
  body .blogPage .ml-blogs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .blogCatsContainer {
    flex: 0 0 125px;
    position: static;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 21px;
  }

  .blogCatsList {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .blogCatsList::-webkit-scrollbar {
    height: 4px;
  }
  .blogCatsList::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
  }
  .blogCatsList::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 2px;
  }

  .blogCatsItem {
    flex: 0 0 auto;
    min-width: auto;
  }

  .blogCatsButton {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
  }

  .active .blogCatsButton {
    background: #fff;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 768px) {
  .blogCatsTitle {
    font-size: 1.1rem;
  }
  .blogCatsButton {
    font-size: 15px;
    padding: 10px 14px;
  }
}

.heroSection {
  margin: 50px 0px;
}

.heroContent {
  margin: 0 auto 20px auto;
  text-align: center;
  padding: 0 20px;
  border-bottom: 1px solid #e5e5e5;
}

.blogDetailTitle {
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  margin-bottom: 35px;
}

.authorInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 30px;
  max-width: 280px;
  margin: 0 auto 25px auto;
}

.authorImage {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.authorInfo div {
  text-align: center;
}

.authorInfo h4 {
  margin: 0 0 2px 0;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
}

.authorInfo p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}

.metaInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin: 0 auto 45px auto;
}

.publishDate,
.readTime {
  font-size: 0.9rem;
  color: #888;
  font-weight: 400;
}

.heroImageContainer {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detailContent {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.contentSections {
  flex: 1;
  max-width: 780px;
  order: 1;
  grid-column: 1;
}

.leftSidebar {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.contentSection {
  margin-bottom: 55px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e5e5e5;
}

.contentSection:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sectionTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.sectionContent {
  line-height: 1.8;
}

.paragraph {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.8;
  font-weight: 400;
}

.paragraph:last-child {
  margin-bottom: 0;
}

.stickyNav {
  background: #fafbfc;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 32px 28px;
  height: fit-content;
  transition: all 0.3s ease;
}

.stickyNav h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

.stickyNav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stickyNav li {
  margin-bottom: 4px;
}

.navItem {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1.4;
}

.navItem:hover {
  background: #f0f1f3;
  color: #1a1a1a;
}

.navItem.active {
  background: #6948f9;
  color: white;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .detailContent {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stickyNav {
    position: relative;
    top: 0;
    order: 0;
    max-width: 100%;
    flex: 1;
    grid-column: 1;
    grid-row: 1;
  }

  .contentSections {
    order: 1;
    max-width: 100%;
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .blogDetailTitle {
    font-size: 2rem;
  }

  .sectionTitle {
    font-size: 1.5rem;
  }

  .heroImageContainer {
    height: 300px;
    border-radius: 16px;
  }

  .detailContent {
    padding: 0 15px;
  }
}

@media (max-width: 1200px) {
  .blogGrid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .blogContent {
    flex-direction: column;
    gap: 30px;
  }

  :global(.m-hp-new-faqs-container) {
    order: -1 !important;
    position: static !important;
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #f5f3f8 !important;
    border-radius: 20px !important;
    padding: 21px !important;
    overflow: hidden !important;
  }

  :global(.m-hp-new-faqs-list) {
    display: flex !important;
    flex-direction: row !important;
    white-space: nowrap !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
    overflow-x: auto !important;
    scrollbar-width: thin !important;
    -ms-overflow-style: auto !important;
    margin: 0 !important;
  }

  :global(.m-hp-new-faqs-list::-webkit-scrollbar) {
    height: 4px !important;
  }

  :global(.m-hp-new-faqs-list::-webkit-scrollbar-track) {
    background: #f1f1f1 !important;
    border-radius: 2px !important;
  }

  :global(.m-hp-new-faqs-list::-webkit-scrollbar-thumb) {
    background: #667eea !important;
    border-radius: 2px !important;
  }

  :global(.m-hp-new-faqs-list::-webkit-scrollbar-thumb:hover) {
    background: #5a6fd8 !important;
  }

  :global(.m-hp-new-faqs-item) {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    border-bottom: none !important;
    min-width: auto !important;
  }

  :global(.m-hp-new-faqs-question) {
    white-space: nowrap !important;
    min-width: auto !important;
    padding: 12px 16px !important;
    background: white !important;
    border-radius: 8px !important;
    font-size: 16px !important;
  }

  :global(.m-hp-new-faqs-item.active .m-hp-new-faqs-question) {
    background: white !important;
    color: transparent !important;
    background-image: linear-gradient(
      90deg,
      #6948f9 0%,
      #f85efe 30%,
      #a10187 100%
    ) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  :global(.m-hp-new-faqs-question svg) {
    display: inline-block !important;
  }

  .detailContent {
    flex-direction: column;
    gap: 30px;
  }

  .contentSections {
    order: 1;
    padding-right: 0;
  }

  .stickyNav {
    flex: none;
    position: static;
    order: 2;
  }

  .stickyNav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
  }

  .stickyNav ul::-webkit-scrollbar {
    display: none;
  }

  .navItem {
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #eee;
  }

  .navItem:hover {
    background: #f8f9fa;
  }

  .navItem.active {
    background: #6948f9;
    color: white;
    border-color: #6948f9;
  }
}

@media (max-width: 768px) {
  .blogPage {
    padding: 40px 0;
  }

  .blogHeader {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .blogTitle {
    font-size: 2.2rem;
  }

  .blogSubtitle {
    font-size: 1rem;
  }

  .blogContent {
    padding: 0 20px;
  }

  .blogGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blogsHero .blogPage .ml-blogs-grid,
  body .blogPage .ml-blogs-grid {
    grid-template-columns: 1fr !important;
  }

  .blogCard {
    border-radius: 12px;
  }

  .blogImageContainer {
    height: 180px;
  }

  .blogCardContent {
    padding: 20px;
  }

  .blogCardTitle {
    font-size: 1.1rem;
  }

  .blogDetailPage {
    padding: 20px 0;
  }

  .heroImageContainer {
    height: 250px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .blogDetailTitle {
    font-size: 1.8rem;
  }

  .authorInfo {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .detailContent {
    padding: 0 20px;
  }

  .leftSidebar {
    display: none;
  }

  .contentSections {
    padding: 0 20px;
  }

  .sectionTitle {
    font-size: 1.5rem;
  }

  .paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blogHeader {
    padding: 0 15px;
  }

  .blogTitle {
    font-size: 1.8rem;
  }

  .blogContent {
    padding: 0 15px;
  }

  .blogImageContainer {
    height: 160px;
  }

  .blogCardContent {
    padding: 15px;
  }

  .readMoreBtn {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }

  .heroImageContainer {
    height: 200px;
  }

  .blogDetailTitle {
    font-size: 1.5rem;
  }

  .detailContent {
    padding: 0 15px;
  }

  .contentSections {
    padding: 0 15px;
  }

  .stickyNav {
    padding: 15px;
  }

  .sectionTitle {
    font-size: 1.3rem;
  }
}

.cta-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.ml-cta {
  width: 100%;
  border-radius: 2rem;
  background: linear-gradient(90deg, #6948f9 0%, #f85efe 47%, #a10187 100%),
    linear-gradient(360deg, #fffcfc 0%, #bb9df8 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ml-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 3rem 1rem;
  z-index: 1;
}

.ml-cta__heading {
  max-width: 700px;
  margin: auto;
  color: white;
}

.ml-cta__text {
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
  color: white !important;
  font-weight: 400 !important;
  font-size: 18px !important;
}

.ml-cta-button {
  width: 200px !important;
  margin: auto !important;
  background: white !important;
}

.ml-cta__button:hover {
  background: #6948f9;
  color: #fff;
}

.ml-cta__graphic {
  position: absolute;
  top: 19%;
  right: 10%;
  transform: translateY(-50%);
  width: 150px;
  max-width: 25%;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.ml-cta__graphic img {
  width: 100%;
  height: auto;
  display: block;
}

.ml-cta__shadow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 9999 !important;
}

.ml-cta__shadow img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .ml-cta {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1440px) {
  .ml-cta__graphic {
    right: 14% !important;
  }
  .ml-cta__container {
    padding: 4rem 1rem !important;
  }
}

.contact-form {
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-weight: 500 !important;
  font-size: 50px !important;
  color: #ffffff !important;
}

.contact-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 42px;
  margin-bottom: 40px;
  color: #ffffffbf;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 700px;
  margin: 10px auto;
  position: relative;
}

.contact-item {
  padding: 25px 20px;
  position: relative;
}

.contact-item img {
  width: 40px;
  height: 30px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.contact-item p {
  font-size: 18px;
  line-height: 1.5;
  color: #cccccc;
}

.contact-item:nth-child(1)::after {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMzIiIGhlaWdodD0iMyIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDIzMiAzIj48cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIyMzAiIHg9IjEiIHk9IjIiIHN0cm9rZT0idXJsKCNwcmVmaXhfX2EpIiB0cmFuc2Zvcm09InJvdGF0ZSgtOTAgMSAyKSIvPjxkZWZzPjxyYWRpYWxHcmFkaWVudCBpZD0icHJlZml4X19hIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMCAxMTYuMTUgLTE4MzAxMTAwMDAgMCAxIDExNykiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjNTQ1NDU0Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjNTQ1NDU0IiBzdG9wLW9wYWNpdHk9Ii4xIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PC9zdmc+);
  content: "";
  display: inline-block;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 60%;
}

.contact-item:nth-child(2)::after {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMzIiIGhlaWdodD0iMyIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDIzMiAzIj48cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIyMzAiIHg9IjEiIHk9IjIiIHN0cm9rZT0idXJsKCNwcmVmaXhfX2EpIiB0cmFuc2Zvcm09InJvdGF0ZSgtOTAgMSAyKSIvPjxkZWZzPjxyYWRpYWxHcmFkaWVudCBpZD0icHJlZml4X19hIiBjeD0iMCIgY3k9IjAiIHI9IjEiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMCAxMTYuMTUgLTE4MzAxMTAwMDAgMCAxIDExNykiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjNTQ1NDU0Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjNTQ1NDU0IiBzdG9wLW9wYWNpdHk9Ii4xIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PC9zdmc+);
  content: "";
  display: inline-block;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 60%;
}

.contact-item:nth-child(1)::before {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzIiBoZWlnaHQ9IjEzNiIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDMgMTM2Ij48cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxMzQiIHg9IjEiIHk9IjEiIHN0cm9rZT0idXJsKCNwcmVmaXhfX2EpIi8+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJwcmVmaXhfX2EiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgwIDY3LjY3IC0xODMwMTMwMDAwIDAgMSA2OCkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjNTQ1NDU0Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjNTQ1NDU0IiBzdG9wLW9wYWNpdHk9Ii4xIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PC9zdmc+);
  content: "";
  display: inline-block;
  height: 110px;
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
}

.contact-item:nth-child(3)::before {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzIiBoZWlnaHQ9IjEzNiIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDMgMTM2Ij48cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxMzQiIHg9IjEiIHk9IjEiIHN0cm9rZT0idXJsKCNwcmVmaXhfX2EpIi8+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJwcmVmaXhfX2EiIGN4PSIwIiBjeT0iMCIgcj0iMSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgwIDY3LjY3IC0xODMwMTMwMDAwIDAgMSA2OCkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjNTQ1NDU0Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjNTQ1NDU0IiBzdG9wLW9wYWNpdHk9Ii4xIi8+PC9yYWRpYWxHcmFkaWVudD48L2RlZnM+PC9zdmc+);
  content: "";
  display: inline-block;
  height: 110px;
  position: absolute;
  top: 25px;
  right: 0;
  width: 4px;
}

.contact-form-container {
  background-color: white;
  border-radius: 20px;
  padding: 29px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 755px;
}

.form-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 15px !important;
}

.form-subtitle {
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 13px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 13px;
}

.form-label {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #51555c;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid #e5e5e5;
  background: transparent;
  font-size: 15px;
  font-family: "Sora", sans-serif !important;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-image: linear-gradient(90deg, #6948f9 0%, #f85efe 30%, #a10187 100%) 1;
}

.form-input::placeholder {
  color: #999999;
}

.form-textarea {
  min-height: 75px;
  resize: vertical;
}

.contact-form .ml-cta-button {
  position: absolute;
  right: 20px;
  bottom: -67px;
  margin: 0;
  padding: 16px !important;
  width: 160px !important;
  border: none;
}

@media screen and (max-width: 1440px) {
  .form-title {
    font-size: 30px !important;
  }

  .form-input {
    padding: 8px 0;
  }

  .form-textarea {
    min-height: 60px !important;
  }
}

@media (max-width: 1091px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-title {
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    margin: 30px auto;
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .contact-form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 1091px) and (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-container {
    margin: auto;
    width: 90%;
  }

  .contact-item {
    padding: 25px;
    text-align: start;
  }
}

@media screen and (max-width: 1400px) and (min-width: 1091px) {
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .contact-item p {
    font-size: 12px !important;
  }

  .contact-container {
    grid-template-columns: 45% 55%;
    gap: 40px;
  }

  .form-input {
    padding: 7px 0;
  }
  .contact-info h2 {
    font-weight: 500 !important;
    font-size: 30px !important;
    color: #ffffff !important;
  }
  .contact-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 40px;
    color: #ffffffbf;
  }

  .form-subtitle {
    font-size: 14px !important;
  }

  .form-label {
    font-size: 14px;
  }

  .form-input {
    font-size: 14px !important;
  }

  .contact-form-container {
    height: 630px !important;
  }
}

@media screen and (max-width: 576px) {
  .contact-info h2 {
    font-size: 24px !important;
  }

  .contact-subtitle {
    font-size: 15px;
    line-height: 25px;
  }

  .contact-form-container {
    padding: 20px !important;
    height: 1050px !important;
  }

  .form-label {
    font-size: 16px;
  }

  .contact-item p {
    font-size: 10px !important;
  }

  .contact-item h3 {
    font-size: 15px !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .form-title {
    font-size: 22px !important;
  }

  .form-subtitle {
    font-size: 17px !important;
  }
}

@media (max-width: 480px) {
  .main-wrapper {
    padding: 20px 15px;
  }

  .contact-form-container {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .form-grid {
    gap: 15px;
  }

  .form-input {
    padding: 10px 0;
    font-size: 14px;
  }

  .contact-form-container {
    height: 925px !important;
  }
}

.ml-blogs-header {
  margin-bottom: 40px;
}

.ml-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ml-blogs-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.ml-blogs-card-link:hover {
  transform: translateY(-5px);
}

.ml-blogs-card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ml-blogs-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.ml-blogs-image-container > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.ml-blogs-arrow-icon {
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.ml-blogs-arrow-icon img {
  width: 15px;
  height: 15px;
}

.ml-blogs-card-link:hover .ml-blogs-arrow-icon {
  background: linear-gradient(90deg, #6948f9 0%, #f85efe 50%, #a10187 100%);
}

.ml-blogs-content {
  padding: 25px 0;
}

.ml-blogs-category {
  display: block;
  font-size: 17px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    90deg,
    rgb(105, 72, 249) 0%,
    rgb(248, 94, 254) 50%,
    rgb(161, 1, 135) 100%
  );
  -webkit-background-clip: text;

  margin-bottom: 8px;
  font-weight: 600;
}

.ml-blogs-post-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #000000;
}

.author-name {
  font-size: 13px !important;
  color: #000000 !important;
  font-weight: 600 !important;
}

.ml-blogs-date {
  margin-left: 5px;
  font-size: 12px !important;
}

@media (max-width: 1024px) {
  .ml-blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ml-blogs-arrow-icon {
    bottom: 15px !important;
    right: 12px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .tech-category {
    display: unset !important;
  }
}

@media (max-width: 768px) {
  .ml-blogs-grid {
    grid-template-columns: 1fr;
  }

  .ml-blogs-title {
    font-size: 30px;
  }

  .ml-blogs-arrow-icon {
    bottom: 31px !important;
    right: 36px !important;
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 530px) {
  .ml-blogs-arrow-icon {
    bottom: 32px !important;
    right: 35px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 530px) {
  .ml-blogs-arrow-icon {
    bottom: 9px !important;
    right: 10px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

.about-mobilions-labs-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-mobilions-labs-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.about-mobilions-labs-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
  background: #fff;
}

.faqs-new-ml {
  margin: 0px !important;
}

.m-hp-new-faqs-header {
  margin-bottom: 50px;
}

.m-hp-new-faqs-title {
  font-weight: 700;
  font-size: 56px;
  line-height: 68.88px;
  color: #000000;
  margin-bottom: 20px;
}

.m-hp-new-faqs-subtitle {
  font-weight: 400;
  font-size: 22px;
  color: #8c8c8c;
}

.m-hp-new-faqs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.m-hp-new-faqs-item {
  border-bottom: 1px solid #e5e5e5;
}

.m-hp-new-faqs-item:last-child {
  border-bottom: none;
}

.m-hp-new-faqs-question {
  width: 100%;
  padding: 30px 60px 30px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
  font-family: "Sora", sans-serif !important;
  list-style: none;
}

.m-hp-new-faqs-question:focus {
  outline: none;
}

.m-hp-new-faqs-question svg {
  transition: all 0.3s ease;
  margin-left: 20px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  min-width: 16px;
}

.m-hp-new-faqs-item[open] .m-hp-new-faqs-question {
  background: linear-gradient(90deg, #6948f9 0%, #f85efe 30%, #a10187 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #6948f9;
}

.m-hp-new-faqs-item[open] .m-hp-new-faqs-question svg {
  transform: rotate(90deg);
}

.m-hp-new-faqs-item[open] .m-hp-new-faqs-question svg path {
  stroke: #f85efe;
  stroke-width: 1.5;
  fill: none;
  filter: hue-rotate(20deg) saturate(1.5);
}

.m-hp-new-faqs-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 60px 0 0;
  opacity: 0;
}

.m-hp-new-faqs-item[open] .m-hp-new-faqs-answer {
  max-height: 500px;
  padding: 0 60px 30px 0;
  opacity: 1;
}

.m-hp-new-faqs-answer-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
}

.about-mobilions-labs-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-mobilions-labs-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.about-mobilions-labs-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
  background: #fff;
}

.faqs-container,
.m-hp-new-faqs-container {
  width: 100%;
}

@media (max-width: 768px) {
  .m-hp-new-faqs-title {
    font-size: 36px;
  }

  .m-hp-new-faqs-subtitle {
    font-size: 16px;
  }

  .m-hp-new-faqs-question {
    font-size: 18px;
    padding: 25px 50px 25px 0;
    line-height: 30px !important;
  }

  .m-hp-new-faqs-answer {
    padding: 0 50px 0 0;
    opacity: 0;
  }

  .m-hp-new-faqs-item[open] .m-hp-new-faqs-answer {
    padding: 0 50px 25px 0;
    opacity: 1;
  }

  .m-hp-new-faqs-answer-content {
    font-size: 15px;
  }

  .m-hp-new-faqs-question svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }
}

@media (max-width: 480px) {
  .m-hp-new-faqs-title {
    font-size: 28px;
  }

  .m-hp-new-faqs-subtitle {
    font-size: 14px;
  }

  .m-hp-new-faqs-question {
    font-size: 14px;
    padding: 20px 40px 20px 0;
    line-height: 1.5 !important;
  }

  .m-hp-new-faqs-answer {
    padding: 0 40px 0 0;
    opacity: 0;
  }

  .m-hp-new-faqs-answer-content {
    line-height: 21px;
    font-size: 14px;
  }

  .m-hp-new-faqs-item[open] .m-hp-new-faqs-answer {
    padding: 0 40px 20px 0;
    opacity: 1;
  }

  .mt-5 {
    margin-top: 0rem !important;
  }

  .m-hp-new-faqs-question svg {
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin-left: 30px !important;
  }
}
