/* =====================================
   Mark Cost Page Redesign - CSS
   Scoped with: .mark-redesign .mark-cost-page
   ===================================== */

/* =====================================
   Layout
   ===================================== */
.mark-redesign .mark-cost-page {
  min-height: 100vh;
  background-color: #f8fafc;
}

.mark-redesign .mark-cost-page .cost-layout {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 0; /* Removed: already handled by .mark-redesign padding-top */
}

/* =====================================
   Sidebar
   ===================================== */
.mark-redesign .mark-cost-page .cost-sidebar {
  width: 320px;
  background: #0f172b;
  min-height: calc(100vh - 108px);
  position: sticky;
  top: 108px; /* Banner(44px) + Header(64px) */
  border-right: 0.8px solid #6e11b0;
  overflow-y: auto;
  transition: top 0.3s ease, min-height 0.3s ease;
}

/* When banner is hidden */
.mark-redesign.banner-hidden .mark-cost-page .cost-sidebar {
  top: 64px; /* Header only */
  min-height: calc(100vh - 64px);
}

.mark-redesign .mark-cost-page .cost-sidebar-header {
  padding: 24px;
  border-bottom: 0.8px solid #6e11b0;
}

.mark-redesign .mark-cost-page .cost-sidebar-header h3 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d1d5dc;
  margin: 0;
  line-height: 24px;
}

.mark-redesign .mark-cost-page .cost-sidebar-nav {
  padding: 16px;
  text-align: left;
}

.mark-redesign .mark-cost-page .cost-menu-group {
  margin-bottom: 4px;
  text-align: left;
}

.mark-redesign .mark-cost-page .cost-menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  border-radius: 12px;
  color: #d1d5dc;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
  text-align: left !important;
}

.mark-redesign .mark-cost-page .cost-menu-item:hover {
  background-color: rgba(152, 16, 250, 0.1);
}

/* Base active state for direct menu items (fallback) */
.mark-redesign .mark-cost-page .cost-menu-item.active {
  background-color: #9810fa !important;
  color: white !important;
}

.mark-redesign .mark-cost-page .cost-menu-item.collapsible {
  justify-content: flex-start;
}

.mark-redesign .mark-cost-page .cost-menu-item.collapsible .cost-arrow {
  margin-left: auto;
}

.mark-redesign .mark-cost-page .cost-icon {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}

.mark-redesign .mark-cost-page .cost-arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

.mark-redesign .mark-cost-page .cost-menu-item.collapsible.expanded .cost-arrow {
  transform: rotate(180deg);
}

.mark-redesign .mark-cost-page .cost-submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  text-align: left !important;
}

.mark-redesign .mark-cost-page .cost-submenu.expanded {
  display: block;
}

.mark-redesign .mark-cost-page .cost-submenu li {
  margin: 0;
  text-align: left !important;
  display: block;
}

.mark-redesign .mark-cost-page .cost-submenu a {
  display: block;
  margin-left: 44px; /* Indent without background color */
  padding: 8px 8px 8px 8px; /* Equal padding on all sides */
  color: #d1d5dc;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 8px;
  text-align: left !important;
  justify-content: flex-start;
  width: calc(100% - 44px); /* Adjust width to account for margin */
  box-sizing: border-box;
}

.mark-redesign .mark-cost-page .cost-submenu a:hover {
  background-color: rgba(152, 16, 250, 0.1) !important;
}

/* Base submenu active state - lighter purple (works for both desktop and mobile) */
.mark-redesign .mark-cost-page .cost-submenu a.active {
  background-color: #c77aff !important;
  color: white !important;
}

/* More specific rules for desktop and mobile (higher priority) */
.mark-redesign .mark-cost-page .cost-sidebar .cost-submenu a.active,
.mark-redesign .mark-cost-page .mobile-sidebar .cost-submenu a.active {
  background-color: #c77aff !important;
  color: white !important;
}

/* Base parent menu item with active child */
.mark-redesign .mark-cost-page .cost-menu-item.has-active-child {
  background-color: #9810fa !important;
  color: white !important;
}

/* More specific parent menu item active when submenu is active (desktop) */
.mark-redesign .mark-cost-page .cost-sidebar .cost-menu-item.has-active-child {
  background-color: #9810fa !important;
  color: white !important;
}

/* Parent menu item active when submenu is active (mobile) */
.mark-redesign .mark-cost-page .mobile-sidebar .cost-menu-item.has-active-child {
  background-color: #9810fa !important;
  color: white !important;
}

/* Direct menu item active (not in submenu) - desktop */
.mark-redesign .mark-cost-page .cost-sidebar .cost-menu-item.active {
  background-color: #9810fa !important;
  color: white !important;
}

/* Direct menu item active (not in submenu) - mobile */
.mark-redesign .mark-cost-page .mobile-sidebar .cost-menu-item.active {
  background-color: #9810fa !important;
  color: white !important;
}

/* =====================================
   Main Content
   ===================================== */
.mark-redesign .mark-cost-page .cost-content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.mark-redesign .mark-cost-page .cost-section {
  display: none;
}

.mark-redesign .mark-cost-page .cost-section.active {
  display: block;
}

.mark-redesign .mark-cost-page .cost-page-header {
  margin-bottom: 32px;
}

.mark-redesign .mark-cost-page .cost-page-header h1 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.mark-redesign .mark-cost-page .cost-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
  margin: 0;
}

/* =====================================
   Cards
   ===================================== */
.mark-redesign .mark-cost-page .cost-card {
  background: white;
  border: 0.8px solid #f3e8ff;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mark-redesign .mark-cost-page .cost-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.mark-redesign .mark-cost-page .cost-card-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

.mark-redesign .mark-cost-page .cost-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.mark-redesign .mark-cost-page .cost-card-title {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin: 0;
  line-height: 1.5;
}

.mark-redesign .mark-cost-page .cost-card-description {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
  margin: 0 0 24px 0;
}

/* =====================================
   Tables - Base
   ===================================== */
.mark-redesign .mark-cost-page .cost-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.mark-redesign .mark-cost-page .cost-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  border: none;
}

.mark-redesign .mark-cost-page .cost-table th {
  background: #f3e8ff;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  border: 0.8px solid #f3e8ff;
  border-left: none;
  border-right: none;
  line-height: 1.5;
}

.mark-redesign .mark-cost-page .cost-table thead tr:first-child th {
  border-top: none;
}

.mark-redesign .mark-cost-page .cost-table td {
  padding: 12px 16px;
  text-align: center;
  border: 0.8px solid #f3e8ff;
  border-left: none;
  border-right: none;
  font-size: 14px;
  line-height: 1.5;
  color: #0a0a0a;
}

.mark-redesign .mark-cost-page .cost-table tbody tr:last-child td {
  border-bottom: none;
}

/* First column of table - left aligned */
.mark-redesign .mark-cost-page .cost-table td:first-child {
  text-align: left;
  padding-left: 16px;
}

.mark-redesign .mark-cost-page .cost-table .price {
  font-size: 14px;
  color: #9810fa;
  font-weight: 400;
  margin: 0;
}

.mark-redesign .mark-cost-page .cost-table .vat {
  font-size: 14px;
  color: #64748b;
  margin: 4px 0 0 0;
}

/* Icon containers - matching Figma design */
.mark-redesign .mark-cost-page .icon-check-container,
.mark-redesign .mark-cost-page .icon-dash-container {
  width: 28px;
  height: 28px;
  background: #f3e8ff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin: 0 auto;
}

.mark-redesign .mark-cost-page .icon-check-container img,
.mark-redesign .mark-cost-page .icon-dash-container img {
  width: 20px;
  height: 20px;
  display: block;
}

/* =====================================
   Service Comparison Table
   ===================================== */
.mark-redesign .mark-cost-page .cost-table.service-comparison {
  border: none;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison th {
  vertical-align: top;
  padding: 16px;
  background: white;
  border: none;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison td {
  border-left: none;
  border-right: none;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison tr:first-child th {
  border-top: none;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison tbody tr:first-child td {
  border-top: 0.8px solid #f3e8ff;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison tbody tr:last-child td {
  border-bottom: none;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison .service-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 8px;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison .pricing-row {
  background: #f3e8ff;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison .pricing-row td {
  background: #f3e8ff;
}

/* Purple bar on the left of pricing rows */
.mark-redesign .mark-cost-page .cost-table.service-comparison .pricing-row td:first-child {
  border-left: 4px solid #9810fa;
  padding-left: 16px;
}

.mark-redesign .mark-cost-page .cost-table.service-comparison .feature-label {
  text-align: left;
  color: #8a2be2;
  font-weight: 600;
  padding-left: 16px;
}

/* =====================================
   Simple Table (2-column)
   ===================================== */
.mark-redesign .mark-cost-page .cost-table.simple-table {
  border: none;
}

.mark-redesign .mark-cost-page .cost-table.simple-table td {
  border-left: none;
  border-right: none;
}

.mark-redesign .mark-cost-page .cost-table.simple-table tr:first-child td {
  border-top: none;
}

.mark-redesign .mark-cost-page .cost-table.simple-table tr:last-child td {
  border-bottom: none;
}

.mark-redesign .mark-cost-page .cost-table.simple-table td.label {
  text-align: left;
  padding-left: 16px;
  font-weight: 600;
  color: #0a0a0a;
  width: 60%;
}

.mark-redesign .mark-cost-page .cost-table.simple-table td.value {
  text-align: right;
  padding-right: 16px;
  width: 40%;
}

.mark-redesign .mark-cost-page .cost-table.simple-table .badge-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9810fa;
  margin-right: 8px;
}

/* =====================================
   Registration Fee Table (Section 2)
   ===================================== */
.mark-redesign .mark-cost-page .registration-fee-table {
  border: none;
}

.mark-redesign .mark-cost-page .registration-fee-table td {
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

.mark-redesign .mark-cost-page .registration-fee-table tr:first-child td {
  border-top: none;
}

.mark-redesign .mark-cost-page .registration-fee-table tr:last-child td {
  border-bottom: none;
}

.mark-redesign .mark-cost-page .registration-fee-table td.label {
  text-align: left;
  padding-left: 16px;
}

.mark-redesign .mark-cost-page .registration-fee-table .badge {
  margin-right: 8px;
  vertical-align: middle;
}

.mark-redesign .mark-cost-page .registration-fee-table .service-label {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  vertical-align: middle;
}

/* =====================================
   Government Fees Table (Section 2)
   ===================================== */
.mark-redesign .mark-cost-page .government-fees-table {
  border: none;
}

.mark-redesign .mark-cost-page .government-fees-table td {
  border-left: none;
  border-right: none;
}

.mark-redesign .mark-cost-page .government-fees-table tr:first-child td {
  border-top: none;
}

.mark-redesign .mark-cost-page .government-fees-table tr:last-child td {
  border-bottom: none;
}

.mark-redesign .mark-cost-page .government-fees-row {
  position: relative;
}

.mark-redesign .mark-cost-page .government-fees-row td.label {
  padding-left: 24px;
}

.mark-redesign .mark-cost-page .government-fees-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #c27aff;
  border-radius: 4px;
}

/* =====================================
   Badge Styles
   ===================================== */
.mark-redesign .mark-cost-page .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.mark-redesign .mark-cost-page .badge-basic {
  background: transparent;
  border: 0.8px solid #f3e8ff;
  color: #0a0a0a;
}

.mark-redesign .mark-cost-page .badge-smart {
  background: #f3e8ff;
  color: #8200db;
}

.mark-redesign .mark-cost-page .badge-premium {
  background: #9810fa;
  color: white;
}

.mark-redesign .mark-cost-page .icon-crown {
  margin-right: 4px;
}

/* =====================================
   Note Box
   ===================================== */
.mark-redesign .mark-cost-page .cost-note {
  background: #f3e8ff;
  border: 0.8px solid #f3e8ff;
  border-radius: 14px;
  padding: 16px;
  margin-top: 16px;
}

.mark-redesign .mark-cost-page .cost-note p {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  margin: 0;
}

/* =====================================
   Government Fees Card
   ===================================== */
.mark-redesign .mark-cost-page .cost-card.government-fees {
  /* Same as regular card, no special styling needed */
}

/* =====================================
   Mobile Floating Menu Button
   ===================================== */
.mark-redesign .mark-cost-page .mobile-menu-button {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 64px;
  height: 64px;
  background: #9810fa;
  border-radius: 50%;
  border: none;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 999; /* Lower than ChannelTalk (10000+) */
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* Ensure button is clickable */
}

.mark-redesign .mark-cost-page .mobile-menu-button svg {
  width: 28px;
  height: 28px;
  fill: white;
  pointer-events: none; /* Prevent SVG from blocking clicks */
}

/* =====================================
   Mobile Sidebar Overlay
   ===================================== */
.mark-redesign .mark-cost-page .mobile-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900; /* Lowest - background layer */
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; /* No pointer events when inactive */
}

.mark-redesign .mark-cost-page .mobile-sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto; /* Enable clicks when active */
}

.mark-redesign .mark-cost-page .mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: #0f172b;
  border-right: 0.8px solid #6e11b0;
  z-index: 950; /* Higher than overlay, shows above dark background */
  overflow-y: auto;
  transition: left 0.3s;
}

.mark-redesign .mark-cost-page .mobile-sidebar.active {
  left: 0;
}

/* Reduce padding for mobile sidebar */
.mark-redesign .mark-cost-page .mobile-sidebar .cost-sidebar-header {
  padding: 20px 12px; /* Smaller horizontal padding */
}

.mark-redesign .mark-cost-page .mobile-sidebar .cost-sidebar-nav {
  padding: 12px 8px; /* Smaller left/right padding for mobile */
}

.mark-redesign .mark-cost-page .mobile-sidebar .cost-menu-item {
  padding: 8px 8px; /* Equal padding, no extra left padding */
}

.mark-redesign .mark-cost-page .mobile-sidebar .cost-icon {
  margin-right: 8px; /* Smaller icon margin for mobile */
}

.mark-redesign .mark-cost-page .mobile-sidebar .cost-submenu {
  padding: 0; /* Remove submenu container padding */
  margin: 0;
}

.mark-redesign .mark-cost-page .mobile-sidebar .cost-submenu a {
  margin-left: 24px !important; /* Smaller indent for mobile submenu */
  width: calc(100% - 24px) !important;
  padding: 6px 8px !important; /* Force equal padding, override any other styles */
}

/* Force override any .active padding on mobile */
.mark-redesign .mark-cost-page .mobile-sidebar .cost-submenu a.active {
  padding: 6px 8px !important; /* Force equal padding for active state */
  margin-left: 24px !important;
}

.mark-redesign .mark-cost-page .mobile-sidebar-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mark-redesign .mark-cost-page .mobile-sidebar-close svg {
  width: 16px;
  height: 16px;
  stroke: #d1d5dc;
  stroke-width: 2;
}

/* =====================================
   Responsive Adjustments
   ===================================== */
@media (max-width: 1440px) {
  .mark-redesign .mark-cost-page .cost-layout {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Hide desktop sidebar */
  .mark-redesign .mark-cost-page .cost-sidebar {
    display: none;
  }

  /* Show mobile menu button */
  .mark-redesign .mark-cost-page .mobile-menu-button {
    display: flex;
  }

  /* Show mobile sidebar elements */
  .mark-redesign .mark-cost-page .mobile-sidebar-overlay {
    display: block;
  }

  .mark-redesign .mark-cost-page .mobile-sidebar {
    display: block;
  }

  /* Remove any page-level padding */
  .mark-redesign .mark-cost-page {
    padding: 0;
    margin: 0;
    padding-top: 0; /* Removed: 108px(banner+header) already handled by .mark-redesign */
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
  }

  /* Full width content */
  .mark-redesign .mark-cost-page .cost-layout {
    flex-direction: column;
    padding: 0; /* Remove any layout padding */
    margin: 0; /* Remove any layout margin */
    width: 100%;
  }

  .mark-redesign .mark-cost-page .cost-content {
    width: 100%;
    padding: 20px 16px !important; /* Reduced left-right padding to prevent card overflow */
    margin: 0 auto; /* Center content */
    box-sizing: border-box; /* Include padding in width calculation */
  }

  /* Reset all section padding to be equal */
  .mark-redesign .mark-cost-page .cost-section {
    padding: 0 !important; /* Remove any default section padding */
    margin: 0 !important; /* Remove any default section margin */
  }

  /* Adjust page header */
  .mark-redesign .mark-cost-page .cost-page-header h1 {
    font-size: 28px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .mark-redesign .mark-cost-page .cost-page-header {
    margin-bottom: 24px;
    padding: 0 !important; /* Force remove any header padding */
  }

  .mark-redesign .mark-cost-page .cost-description {
    padding: 0 !important; /* Remove any description padding */
  }

  /* Adjust cards */
  .mark-redesign .mark-cost-page .cost-card {
    width: 100%; /* Ensure full width */
    padding: 16px !important; /* Reduced padding to prevent overflow on mobile */
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box; /* Include padding in width calculation */
  }

  .mark-redesign .mark-cost-page .cost-card-header,
  .mark-redesign .mark-cost-page .cost-card-title,
  .mark-redesign .mark-cost-page .cost-card-description {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Adjust tables */
  .mark-redesign .mark-cost-page .cost-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mark-redesign .mark-cost-page .cost-table {
    min-width: 100%;
  }

  .mark-redesign .mark-cost-page .cost-table th,
  .mark-redesign .mark-cost-page .cost-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* =====================================
   Scrollbar Styling for Sidebar
   ===================================== */
.mark-redesign .mark-cost-page .cost-sidebar::-webkit-scrollbar,
.mark-redesign .mark-cost-page .mobile-sidebar::-webkit-scrollbar {
  width: 8px;
}

.mark-redesign .mark-cost-page .cost-sidebar::-webkit-scrollbar-track,
.mark-redesign .mark-cost-page .mobile-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.mark-redesign .mark-cost-page .cost-sidebar::-webkit-scrollbar-thumb,
.mark-redesign .mark-cost-page .mobile-sidebar::-webkit-scrollbar-thumb {
  background: #6e11b0;
  border-radius: 4px;
}

.mark-redesign .mark-cost-page .cost-sidebar::-webkit-scrollbar-thumb:hover,
.mark-redesign .mark-cost-page .mobile-sidebar::-webkit-scrollbar-thumb:hover {
  background: #9810fa;
}

/* =====================================
   Contact Section (for sections 9-10)
   ===================================== */
.mark-redesign .mark-cost-page .cost-contact-box {
  background: white;
  border: 0.8px solid #f3e8ff;
  border-radius: 18px;
  padding: 48px 32px;
  text-align: center;
}

.mark-redesign .mark-cost-page .cost-contact-box h2 {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #9810fa;
  margin: 0 0 16px 0;
}

.mark-redesign .mark-cost-page .cost-contact-box p {
  font-family: 'Arimo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
  margin: 0;
}

.mark-redesign .mark-cost-page .cost-contact-box .phone-number {
  font-size: 32px;
  font-weight: 700;
  color: #9810fa;
  margin: 24px 0;
}
