.container {
  max-width: 800px;
  margin: 0 auto;
}

.title-name {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-container {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.privacy-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #dee2e6;
}

.privacy-section h3 {
  font-size: 1.2em;
  color: #1e3c72;
  margin-bottom: 15px;
}

.privacy-content {
  background: white;
  padding: 15px;
  border-radius: 4px;
  height: 150px;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  margin-bottom: 15px;
  font-size: 0.9em;
  line-height: 1.6;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  font-size: 1.4em;
  color: #1e3c72;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 500;
  color: #495057;
}

.required {
  color: #dc3545;
  margin-left: 4px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2a5298;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

textarea {
  resize: vertical;
  min-height: 200px;
  font-family: inherit;
}

.radio-group {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.radio-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-wrapper input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.95em;
  line-height: 1.6;
}

.warning-box strong {
  color: #856404;
  display: block;
  margin-bottom: 10px;
}

.file-upload {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: block;
  padding: 12px 16px;
  border: 2px dashed #ced4da;
  border-radius: 6px;
  background: #f8f9fa;
  text-align: center;
  color: #6c757d;
  transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
  border-color: #2a5298;
  background: #e8f0fe;
  color: #2a5298;
}

.help-text {
  font-size: 0.9em;
  color: #6c757d;
  margin-top: 5px;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  padding: 14px 40px;
  font-size: 1.1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background: #2a5298;
  color: white;
}

.btn-primary:hover {
  background: #1e3c72;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.success-container {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon span {
  color: white;
  font-size: 40px;
}

.result-info {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.process-info {
  background: #e8f0fe;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }

  .radio-group {
    flex-direction: column;
    gap: 15px;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
