.none-margin {
  margin: 0 !important;
}

/* 메인 컨테이너 */
.about-container {
  max-width: 940px;
  padding: 0 20px;
  margin: 100px auto;
}

.about-header {
  padding: 0 0 40px;
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-color);
}

.header-icon {
  gap: 12px;
}

.header-icon i {
  font-size: 46px;
  color: var(--primary-color);
}

.about-header h3 {
  margin: 0;
  color: #000;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-header p {
  margin: 0;
  color: #303030;
  font-size: 18px;
}

.about-body {
  padding: 40px 0 0;
}

/* 폼 섹션 */
.form-sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-section {
  background: var(--bg-lighter);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-color);
}

.section-header i {
  font-size: 20px;
  color: var(--primary-color);
}

.section-title {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* 폼 그리드 */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.8;
}

.form-label p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 28px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.color1 {
  background: #00a144;
}

.color2 {
  background: #696e2e;
}

.color3 {
  background: #a49e88;
}

.color4 {
  background: #c32d2f;
}

p.bus-box {
  border-radius: 4px;
  background-color: #365eae;
}

.form-label i {
  font-size: 16px;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(178, 30, 35, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.none-focus:focus {
  border-color: var(--border-color);
  box-shadow: none;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  padding-right: 40px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(178, 30, 35, 0.1);
}

.date-input-group {
  position: relative;
  display: flex;
  width: 100%;
}

.date-input-group .form-control {
  flex: 1;
}

/* 입력 안내 텍스트 */
.form-text {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-style: italic;
}

.form-text.text-muted {
  color: var(--danger-color);
  font-weight: 500;
}

/* 필수 표시 */
.text-danger {
  color: var(--danger-color) !important;
  font-weight: 700;
}

/* 버튼 스타일 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 277px;
  height: 64px;
  gap: 8px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(178, 30, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 30, 35, 0.4);
}

.btn i {
  font-size: 16px;
}

.btn-lg {
  padding: 20px 80px;
  font-size: 16px;
}

.btn-lg i {
  font-size: 18px;
}

/* 폼 액션 */
.form-actions {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

/* 안내 정보 섹션 */
.info-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 20px 0;
}

.info-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 14px;
}

.info-label i {
  font-size: 18px;
  color: var(--primary-color);
}

.info-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.4;
}

.info-sub {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
  display: inline-block;
}

/* 유틸리티 클래스 */
.text-center {
  text-align: center;
}

/* 테이블 스타일 */
.table-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 32px 0 8px;
}

.table-text {
  font-size: 14px;
  font-weight: 400;
  color: #cc3f31;
  margin: 8px 0 0;
}

.registration-table {
  border-collapse: collapse;
  text-align: center;
}

.registration-table tr td {
  background-color: #fff;
  border: 1px solid #d9d9d9;
}

.registration-table th,
.registration-table tr td.first-column {
  width: 200px;
  height: 47px;
  border: 1px solid #d9d9d9;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 47px;
  background-color: #f9f9f9;
}

.registration-table th:nth-child(2),
.registration-table th:nth-child(3) {
  width: 310px;
}

.registration-table .rowspan-cell {
  text-align: center;
  vertical-align: middle;
}

/* 프로그램 섹션 */
.about-program-content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 인사말 섹션 */
.about-content {
  display: flex;
  font-size: 18px;
}

.about-content img {
  display: block;
  width: 218px;
  height: 283px;
  margin-right: 20px;
  object-fit: cover;
}

.about-name {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 400;
  color: #3d3d3d;
  text-align: right;
}

.about-name span {
  font-size: 24px;
  font-weight: 600;
  margin-left: 10px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .about-container {
    padding: 0 20px;
    margin: 50px auto;
  }

  .about-header {
    padding: 0 0 20px;
  }

  .header-icon i {
    font-size: 32px;
  }

  .about-header h3 {
    font-size: 32px;
  }

  .about-header p {
    font-size: 16px;
  }

  .about-body {
    padding: 20px 0 0;
  }

  .form-section {
    padding: 20px;
  }

  .section-header {
    gap: 8px;
  }

  .section-header i {
    font-size: 20px;
  }

  .section-title {
    font-size: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-label p {
    width: 65px;
    height: 26px;
    font-size: 14px;
  }

  .form-control,
  .form-select {
    padding: 10px 12px;
    font-size: 16px;
  }

  .btn {
    width: 320px;
    height: 64px;
  }

  .info-section {
    gap: 12px;
    margin: 15px 0;
  }

  .info-item {
    padding: 15px;
  }

  .info-label {
    font-size: 14px;
  }

  .info-label i {
    font-size: 16px;
  }

  .info-value {
    font-size: 16px;
  }

  .info-sub {
    font-size: 14px;
  }

  .form-actions {
    margin-top: 20px;
    padding-top: 20px;
  }

  .about-program-content img {
    content: url('../images/program_m.webp');
  }

  .about-content {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 16px;
  }

  .about-content img {
    margin: 20px auto 40px;
  }

  .about-name {
    font-size: 16px;
    text-align: center;
  }

  .about-name span {
    font-size: 18px;
  }
}
