.sub-tabs {
  background: #ffffff;
  border-bottom: 0.0625rem solid #e1e1e4;
}
.sub-tabs .container {
  height: 3.75rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sub-tabs .container {
    height: 3.125rem;
  }
}
.sub-tabs .tabs-wrap {
  display: flex;
  gap: 0.25rem;
  height: 100%;
}
.sub-tabs .tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: normal;
  color: #767676;
  text-decoration: none;
  border-bottom: 0.125rem solid transparent;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .sub-tabs .tab-item {
    font-size: 0.875rem;
  }
}
.sub-tabs .tab-item.active {
  color: #367cfe;
  border-bottom-color: #367cfe;
}
.sub-tabs .tab-item:hover:not(.active) {
  color: #555555;
}

.inquiry-content {
  padding: 5rem 0 10rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .inquiry-content {
    padding: 3.75rem 0 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .inquiry-content {
    padding: 2.5rem 0 5rem;
  }
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .inquiry-grid {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.inquiry-info {
  background: #eff2f6;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0.25rem 0.25rem 0.75rem rgba(15, 39, 75, 0.02);
}
@media only screen and (max-width: 767px) {
  .inquiry-info {
    padding: 1rem;
  }
}
.inquiry-info .info-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.inquiry-info .info-header .title-icon {
  position: relative;
  width: 2.1125rem;
  height: 2.1125rem;
}
.inquiry-info .info-header .title-icon img {
  width: 2.1125rem;
  height: 2.1125rem;
  position: absolute;
}
.inquiry-info .info-header .title-icon img.icon-1 {
  top: 0;
  left: 0;
}
.inquiry-info .info-header .title-icon img.icon-2 {
  top: 0.3875rem;
  left: 0.4125rem;
  transform: rotate(180deg);
}
.inquiry-info .info-header h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .inquiry-info .info-header h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .inquiry-info .info-header h2 {
    font-size: 2rem;
  }
}
.inquiry-info .info-description {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #505050;
  margin-bottom: 1.875rem;
}
@media only screen and (max-width: 767px) {
  .inquiry-info .info-description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.inquiry-info .info-description p {
  margin: 0;
}
.inquiry-info .info-image {
  width: 100%;
  height: 27.1875rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .inquiry-info .info-image {
    height: 22rem;
  }
}
@media only screen and (max-width: 767px) {
  .inquiry-info .info-image {
    height: 15rem;
  }
}
.inquiry-info .info-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inquiry-form-wrapper {
  background: #eff2f6;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0.25rem 0.25rem 0.75rem rgba(15, 39, 75, 0.02);
}
@media only screen and (max-width: 767px) {
  .inquiry-form-wrapper {
    padding: 1rem;
  }
}

.inquiry-form {
  padding: 1.25rem 0 0;
}
@media only screen and (max-width: 767px) {
  .inquiry-form {
    padding: 0.625rem 0 0;
  }
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .form-fields {
    gap: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #111111;
}
@media only screen and (max-width: 767px) {
  .form-field label {
    font-size: 1.125rem;
  }
}
.form-field input,
.form-field textarea {
  background: #ffffff;
  border: none;
  border-radius: 0.625rem;
  padding: 1rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111111;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid #367cfe;
  outline-offset: 2px;
}
.form-field input::-moz-placeholder, .form-field textarea::-moz-placeholder {
  color: #b0b0b0;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b0b0b0;
}
.form-field input {
  height: 3.5rem;
}
.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-divider {
  height: 0.125rem;
  background: transparent;
  margin: 2.5rem 0;
}
@media only screen and (max-width: 767px) {
  .form-divider {
    margin: 1.875rem 0;
  }
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.privacy-section .privacy-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #111111;
}
@media only screen and (max-width: 767px) {
  .privacy-section .privacy-title {
    font-size: 1.125rem;
  }
}
.privacy-section .privacy-content {
  background: #ffffff;
  border-radius: 0.625rem;
  padding: 1.25rem;
  max-height: 14rem;
  overflow-y: auto;
}
@media only screen and (max-width: 767px) {
  .privacy-section .privacy-content {
    padding: 1rem;
    max-height: 12rem;
  }
}
.privacy-section .privacy-content::-webkit-scrollbar {
  width: 0.5rem;
}
.privacy-section .privacy-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0.25rem;
}
.privacy-section .privacy-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 0.25rem;
}
.privacy-section .privacy-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.privacy-section .privacy-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111111;
}
.privacy-section .privacy-text p {
  margin: 0 0 0.75rem 0;
}
.privacy-section .privacy-text p:last-child {
  margin-bottom: 0;
}
.privacy-section .privacy-text p strong {
  font-weight: 600;
}
.privacy-section .privacy-checkbox {
  display: flex;
  align-items: center;
}
.privacy-section .privacy-checkbox .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.privacy-section .privacy-checkbox .checkbox-wrapper input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.privacy-section .privacy-checkbox .checkbox-wrapper input[type=checkbox]:checked + .checkbox-custom {
  background: #367cfe;
  border-color: #367cfe;
}
.privacy-section .privacy-checkbox .checkbox-wrapper input[type=checkbox]:checked + .checkbox-custom::after {
  display: block;
}
.privacy-section .privacy-checkbox .checkbox-wrapper .checkbox-custom {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid #d0d0d0;
  border-radius: 0.25rem;
  background: #ffffff;
  transition: all 0.2s ease;
}
.privacy-section .privacy-checkbox .checkbox-wrapper .checkbox-custom::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.3125rem;
  top: 0.0625rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid white;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}
.privacy-section .privacy-checkbox .checkbox-wrapper .checkbox-label {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #111111;
}
.privacy-section .submit-btn {
  width: 100%;
  height: 3.75rem;
  background: #367cfe;
  border: none;
  border-radius: 3.3125rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .privacy-section .submit-btn {
    height: 3.125rem;
    font-size: 1.125rem;
  }
}
.privacy-section .submit-btn:hover {
  background: #2563d9;
}
.privacy-section .submit-btn:active {
  background: #1d4fb8;
}
.privacy-section .submit-btn:disabled {
  background: #b0b0b0;
  cursor: not-allowed;
}