body {
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
  font-family: Raleway Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  height: 100vh;
  overflow: hidden;
}

.container {
  max-width: 550px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding-top: 40px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  gap: 15px;
  position: relative;
}

.img-sec {
  max-height: 300px;
  margin-bottom: 20px;
}

.logo {
  width: 149px;
  height: 40px;
  background-image: url("assets/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.title {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 20px;
  color: #635be5;
  line-height: 1.1;
}

.text {
  color: #4f4f4f;
  font-size: 14px;
  padding: 12px;
  border-radius: 20px;
  font-weight: bold;
  background-color: #f6f6f6;
}

.dd-wrapper {
  position: absolute;
  right: 40px;
}

.dropdown {
  position: relative;
  user-select: none;
}

.dropdown-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #696969;
  gap: 8px;
  transition: background-color 0.2s;
}

.dropdown-btn:hover {
  background-color: #f0f0f0;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background-color: #2f2e41;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: left;
  width: 130px;
  overflow: hidden;
  color: #fff;
}

.dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #514f6a;
}

.dropdown-item img {
  width: 20px;
  height: auto;
  display: block;
}

@media (max-width: 550px) {
  .container {
    width: 100%;
  }

  .card {
    border-bottom: none;
    border-radius: 40px 40px 0 0;
    height: 100vh;
    padding-left: 12px;
    padding-right: 12px;
  }

  header {
    position: inherit;
  }

  .container {
    padding-top: 70px;
  }

  .dd-wrapper {
    right: 16px;
    top: 16px;
  }
}
