       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", sans-serif;
        }
        
        .bold{
          font-weight: bold;
        }
        
        a{
          text-decoration: none;
        }
        .mb-8{
          margin-bottom: 8px;
        }

        .main-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        header {
            height: 76px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            background-color: #f8f9fa;
        }

     /* Add to your existing styles */
.header-links {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative; /* Important for absolute positioning */
}

.header-links-flex{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:8px
}

.header-links-flex p {
  font-weight: 510;
  font-size: 16px;
  line-height: 20px;
  color:#080808

}

.header-link-wrapper {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  min-width: 200px;
  z-index: 100;
}

.header-link-wrapper:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #080808;
  font-weight: 500;
  transition: background-color 0.2s;
}

.dropdown-menu a:hover {
  background-color: #F8F7FF;
}
        .header-item {
            flex: 1;
            text-align: center;
        }

        .header-item:first-child {
            text-align: left;
        }

        .header-item:last-child {
            text-align: right;
        }

        .hero {
            width: 1280px;
            height: 360px;
            margin-top: 32px;
            position: relative;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero img {
            width: 100%;
            height: 100%;
            object-position:center 25%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 170px;
            left:260px;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
        }
        
        .hero-content h1 {
          font-size: 40px;
          font-weight: 700;
          margin-bottom: 16px;
        }

        .hero-content p{
          font-weight: 700;
          font-size: 24px;
          margin-bottom: 24px;
        }
        .hero-content h1, p{
          color:#0F0A37
        }

        .cta-button{
          background: #3122B9;
          border:none;
          width:408px;
          height:60px;
          border-radius: 12px;
          color:#fff;
          font-size: 20px;
          line-height: 20px;
          cursor: pointer;
        }

        .why-nakdin {
            width: 1280px;
            height: 264px;
            margin-top: 32px;
            background-color: #F8F7FF;
            padding: 40px 48px;
            border-radius: 24px;
            color:#140E4A;
        }

        .why-nakdin-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            height: 100%;
        }

        .why-nakdin-content h2{
          font-size: 32px;
          margin-bottom: 24px;
          color:#140E4A
        }

        .why-nakdin-content .text-content {
            flex: 1;
        }

        .why-nakdin-content .text-content p {
         color:212121
        }

        .why-nakdin-content .text-content-p1{
          margin-bottom: 12px;
        }

        .why-nakdin-content img {
            flex-shrink: 0;
        }

        .features {
            width: 1280px;
            height: 832px;
            margin-top: 32px;
            background-color: #f9f3ff;
            padding: 40px;
            border-radius: 24px;
        }

        .features-card-container{
          display: flex;
          flex-direction: column;
          gap:40px
        }

        .features-card{
          display: flex;
          align-items: center;
          gap:20px;
        }

        .features-card-p{
          color:#441866;
          font-size: 20px;
        }

        .features h2 {
          font-size: 32px;
          font-family: 700;
          color:#33124C;
          margin-bottom: 32px;
        }

        .who-should-use {
            width: 1280px;
            height: 352px;
            margin-top: 32px;
            background-color: #F4FFF3;
            padding: 0px 72px;
            border-radius: 24px;
        }

        .who-should-use-flex{
          display: flex;
          justify-content: space-between;
        }

        .who-should-use-cell, .advantages-cell{
          display: flex;
          flex-direction: column;
          gap:16px;
          align-items: center;
          justify-content: center;
        }

        .who-should-use-cell p {
          font-weight: 510;
          font-size: 14px;
          line-height: 18px;
          color:#212121;
          text-align: center;
        }

        .who-should-use-cell img{
          width: 144px;
          height: 144px;
        }

        .who-should-use h2{
          text-align: center;
          color:#033200;
          font-weight: 700;
          font-size: 32px;
          margin-bottom: 32px;
        }

        .advantages {
            width: 1280px;
            height: 456px;
            margin-top: 32px;
            background-color: #FDF3F3;
            padding: 20px;
            color: white;
            border-radius: 24px;
        }

        .advantages-flex{
          display: flex;
          gap:24px
        }

        .advantages-cell {
          width: 224px;
          height: 304px;
          background: #fff;
          border-radius: 24px;
        }

        .advantages-cell p{
          font-weight: 590;
          font-size: 16px;
          line-height: 20px;
          color:#212121;
          text-align: center;
        }

        .advantages-h2{
          color:#8C0000;
          margin-bottom: 32px;
        }

        .how-it-works {
            width: 1280px;
            height: 280px;
            margin-top: 32px;
            background-color: #F5F5F5;
            padding: 40px;
            color: white;
            border-radius: 24px;
        }

        .how-it-works-flex {
          display: flex;
          gap:16px;
          justify-content: space-between;
        }
        
        .how-it-works .number-container{
          display: flex;
          align-items: center;
          justify-content: center;
          width: 56px;
          height: 56px;
          background: #3122B9;
          border-radius: 50%;
        }

        .how-it-works .number-container p{
          color:#fff;
          font-size: 24px;
          line-height: 24px;
          font-weight: 700;
        }

        .how-it-works-flex-cell {
          display: flex;
          align-items: center;
          justify-content: center;
          gap:24px
        }

        .how-it-works-flex-cell p {
          max-width: 160px;
          font-weight: 590;
          font-size: 16px;
          line-height: 20px;
          color:#212121
        }

        .how-it-works-h2{
          color:#212121;
          margin-bottom: 32px;
        }

      footer {
            width: 100vw;
            height: 206px;
            margin: auto;
            margin-top: 32px;
            background-color: #F5F5F5;
            padding: 20px;
            color: white;
            
        }

        .footer-container{
          margin: auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
          max-width:1280px;
        }

        .footer-logo{
          width: 140px;
          height: 40px;
        }

        .footer-copyright{
          color:#919191
        }

        .footer-links{
          display: flex;
          flex-direction: column;
          gap:40px;
          align-items: center;
        }

        footer a {
          color:#140E4A;
          font-weight: bold;
        }

        .footer-links-container{
          display: flex;
          gap:20px
        }

        .footer-socials{
          display: flex;
          gap:10px
        }

.icon-select {
  position: relative;
  width: 36px;
  cursor: pointer;
  border:32px;
}

.icon-selected {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-selected img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Standardize Header Dropdown */
.icon-options {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid #ccc;
    display: none; /* Hidden by default */
    z-index: 1000;
}

/* Show header dropdown when parent has .active OR itself has .show */
.icon-select.active .icon-options,
.icon-options.show {
    display: block !important;
}

.icon-option {
  width: 36px;
  height: 36px;
  overflow: hidden;
  padding: 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lang-login-container{
  display: flex;
  gap:16px;
  align-items: center;
}

.header-btn {
  cursor: pointer;
}

.header-btn button{
  border:1px solid #212121;
  width: 139px;
  height: 36px;
  border-radius: 20px;
  background: none;
  font-family: inherit;
  font-size: 14px;
  line-height:100%;
  text-align: center;
  cursor: pointer;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background-color: white;
  width: 391px;
  height: 258px;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #140E4A;
  text-align: center;
}

.modal-select-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-select-label {
  font-size: 14px;
  font-weight: 500;
  color: #212121;
}

.modal-icon-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.modal-icon-selected {
  width: 100%;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: white;
}

.modal-icon-selected img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.modal-icon-selected span {
  flex: 1;
  font-size: 16px;
  color: #212121;
}

.modal-icon-options {
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #ccc;
    border-radius: 8px;
    display: none; /* Hidden by default */
    z-index: 10000;
    overflow: hidden;
}

/* Show modal dropdown when parent has .active OR itself has .show */
.modal-icon-select.active .modal-icon-options,
.modal-icon-options.show {
    display: block !important;
}
.modal-icon-option {
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-icon-option:hover {
  background-color: #F8F7FF;
}

.modal-icon-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.modal-icon-option span {
  font-size: 16px;
  color: #212121;
}

.modal-confirm-btn {
  font-family: inherit;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;
  height: 48px;
  background: #5B4FCF;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.modal-confirm-btn:hover {
  background: #271B9A;
}

.modal-confirm-btn:active {
  transform: scale(0.98);
}

.modal-confirm-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

