.theme {
  --primary: #2e3a6e;
  --white: #ffffff;
  --black: #000000;
  --black01: #06080e;
  --grey01: #636363;
  --grey02: #3f3f3f;
  --error: #d90429;
  --red0: #ff002c;
  --red01: #c20808;
  --red02: #ae001e;
  --red03: #713e47;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {
  overflow-y: auto;
  scroll-behavior: smooth;
}

.section-title-container h2 {
  margin-bottom: 4px;
  color: var(--black02);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 768px) {
  .section-title-container h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.section-title-container p {
  max-width: 641px;
  margin: auto;
  text-align: center;
  color: var(--grey02);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  letter-spacing: 0.16px;
}
@media screen and (max-width: 768px) {
  .section-title-container p {
    font-size: 14px;
    line-height: 22px;
  }
}

.program-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, auto);
  gap: 26px;
}
@media screen and (max-width: 968px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}
.program-grid .program-item {
  width: 100%;
  border-radius: 24px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
  padding: 24px;
}
.program-grid .program-item .program-img {
  width: 100%;
  border-radius: 24px;
}
.program-grid .program-item .program-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 16px;
  color: #06080e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.16px;
}
.program-grid .program-item .program-price {
  color: #06080e;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.14px;
}
.program-grid .program-item .program-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 4px 0 16px;
  color: #636363;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.program-grid .program-item a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  outline: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--primary);
  color: var(--primary);
}

.form-group {
  margin-bottom: 24px;
}

.form-label,
.file-upload-label {
  display: block;
  margin-bottom: 8px;
  color: #636363;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form-control {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  border-radius: 8px;
  background: rgba(217, 217, 217, 0.21);
  color: var(--primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background-color: white;
}

.form-control.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.error-message {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.error-message.show {
  display: block;
}

.file-upload-container {
  margin-bottom: 24px;
}
.file-upload-container .file-upload-area {
  border-radius: 8px;
  background: rgba(217, 217, 217, 0.21);
  padding: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.file-upload-container .file-upload-area #uploadPrompt {
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-upload-container .file-upload-area p {
  color: var(--black01);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.14px;
  margin-bottom: 0 !important;
}
.file-upload-container .file-upload-area:hover {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.1);
}
.file-upload-container .file-upload-area.dragover {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.1);
}
.file-upload-container .file-upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.6;
}
.file-upload-container .file-upload-text {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 4px;
}
.file-upload-container .file-upload-subtext {
  color: #9ca3af;
  font-size: 12px;
}
.file-upload-container .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-upload-container .uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(217, 217, 217, 0.21);
  border-radius: 8px;
  margin-top: 12px;
}
.file-upload-container .uploaded-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-upload-container .file-icon {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}
.file-upload-container .uploaded-file-name {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}
.file-upload-container .remove-file-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.file-upload-container .remove-file-btn:hover {
  background-color: rgba(239, 68, 68, 0.1);
}
.file-upload-container .remove-file-icon {
  width: 20px;
  height: 20px;
}

.section-faq {
  padding: 14px 80px;
  max-width: 1440px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .section-faq {
    padding: 10px 16px;
  }
}
.section-faq {
  margin-top: 80px;
  margin-bottom: 114px;
}
@media screen and (max-width: 768px) {
  .section-faq {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.section-faq .faq-container {
  max-width: 800px;
  margin: 24px auto;
}
.section-faq .faq-container .faq-item {
  border-radius: 16px;
  border: 1px solid #ececec;
  background: rgba(217, 217, 217, 0.21);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.section-faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}
.section-faq .faq-container details {
  cursor: pointer;
}
.section-faq .faq-container summary {
  padding: 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black01);
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .section-faq .faq-container summary {
    padding: 16px;
  }
}
.section-faq .faq-container .question-text {
  flex: 1;
}
.section-faq .faq-container .icon-container {
  flex-shrink: 0;
}
.section-faq .faq-container summary::-webkit-details-marker {
  display: none;
}
.section-faq .faq-container summary:hover {
  background-color: #f8f9fa;
}
.section-faq .faq-container details[open] summary {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.section-faq .faq-container .faq-content {
  padding: 2rem;
  color: var(--black01);
  background-color: #f8f9fa;
  animation: slideDown 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .section-faq .faq-container .faq-content {
    padding: 1rem;
  }
}
.section-faq .faq-container .faq-content p {
  font-size: 16px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .section-faq .faq-container .faq-content p {
    font-size: 14px;
    line-height: 28px;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=general.css.map */