.main_info {
  padding: 80px 24px 40px;
  background-color: white;
}

.main_info_inner {
  max-width: 800px;
  margin: 0 auto;
}

.main_info_title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
}

.main_info_intro {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.main_info_intro_last {
  margin-bottom: 40px;
}

.main_info_steps {
  list-style: none;
  counter-reset: step-counter;
}

.main_info_step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.main_info_step_number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.main_info_step_content {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #374151;
}

.main_info_conclusion {
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .main_info {
    padding: 32px 16px 20px;
  }
  .main_info_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .main_info_intro {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .main_info_intro_last {
    margin-bottom: 32px;
  }
  .main_info_step {
    margin-bottom: 16px;
  }
  .main_info_step_content {
    font-size: 16px;
  }
  .main_info_conclusion {
    margin-bottom: 40px;
  }
}

.checklist {
  padding: 80px 24px;
  background-color: white;
}

.checklist_inner {
  max-width: 800px;
  margin: 0 auto;
}

.checklist_title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
}

.checklist_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist_item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease-in-out;
}

.checklist_item:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.checklist_checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #3b82f6;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.checklist_checkbox:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.checklist_label {
  font-size: 18px;
  line-height: 1.5;
  color: #374151;
  cursor: pointer;
  flex: 1;
  margin: 0;
}

.checklist_item:has(.checklist_checkbox:checked) {
  background-color: #ecfdf5;
  border-color: #10b981;
}

.checklist_item:has(.checklist_checkbox:checked) .checklist_label {
  color: #065f46;
  text-decoration: line-through;
}

.checklist_actions {
  text-align: center;
  margin-top: 40px;
}

.checklist_button {
  display: inline-block;
  padding: 12px 24px;
}

@media screen and (max-width: 768px) {
  .checklist {
    padding: 32px 16px 20px;
  }
  .checklist_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .checklist_item {
    padding: 8px;
    gap: 8px;
  }
  .checklist_checkbox {
    width: 16px;
    height: 16px;
  }
  .checklist_label {
    font-size: 14px;
  }
}

.contact_us {
  padding: 80px 24px;
  background-color: white;
}

.contact_us_inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}

.contact_us_title {
  font-size: 32px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.contact_us_content {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.contact_us_content_short {
  max-width: 600px;
  margin: 0 auto;
}

.contact_us_details {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ceo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.ceo_image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}
.ceo_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ceo_title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  max-width: 300px;
  margin-bottom: 4px;
}
.ceo_name {
  font-size: 16px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 12px;
  text-align: center;
  max-width: 300px;
}

.ceo_description {
  font-size: 14px;
  font-weight: 400;
  color: #374151;
  text-align: center;
  max-width: 300px;
}
.contact_info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact_item_title {
  font-size: 18px;
  font-weight: 600;
  color: #3b82f6;
  /* margin-bottom: 8px; */
}

.contact_item a {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  text-decoration: none;
}

.contact_us_form {
}

.contact_us_form_intro {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: #374151;
}
.contact_us_form_privacy {
  font-size: 12px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 12px;
}

.contact_us_form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_us_form input,
.contact_us_form textarea {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease-in-out;
  background-color: white;
}

.contact_us_form input:focus,
.contact_us_form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact_us_form input::placeholder,
.contact_us_form textarea::placeholder {
  color: #9ca3af;
}

.contact_us_form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact_us_actions {
  text-align: center;
  margin-top: 20px;
}

.contact_us_button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.contact_us_button:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.contact_us_button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
  .contact_us {
    padding: 32px 16px 20px;
  }
  .contact_us_inner {
    margin-bottom: 20px;
  }
  .contact_us_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact_us_content {
    display: block;
  }
  .contact_us_details {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
  }
  .contact_us_details h3 {
    text-align: center;
  }
  .ceo_image {
    width: 120px;
    height: 120px;
  }
  .ceo_title {
    font-size: 16px;
  }
  .contact_info {
    gap: 8px;
  }
  .contact_item_title {
    margin-bottom: 0;
    font-size: 12px;
  }

  .contact_item a {
    font-size: 14px;
  }
  .contact_us_form_intro {
    padding: 0 16px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 12px;
  }
}

/* Footer styles */
.footer {
  background-color: #111827;
  color: white;
  padding: 32px 16px;
}

.footer_inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer_content {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

.footer_links {
  flex: 1;
}

.footer_links_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer_links_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_links_item {
  margin: 0;
}

.footer_links_link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease-in-out;
}

.footer_links_link:hover {
  color: white;
}

.footer_company {
  flex: 1;
}

.footer_company_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer_company_description {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer_company_copyright {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}

/* Responsive styles for footer */
@media (min-width: 768px) {
  .footer_content {
    flex-direction: row;
    gap: 32px;
  }
}

.thank_you_title {
  margin-top: 0;
}

/* Fees styles */
.fees {
  padding: 80px 24px;
  background-color: white;
}

.fees_inner {
  max-width: 800px;
  margin: 0 auto;
}

.fees_title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
}

.fees_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fees_section {
}

.fees_section_title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 24px;
  text-align: center;
}

.fees_plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fees_plan {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}

.fees_plan_highlighted {
  box-shadow: 0 4px 12px rgba(19, 55, 112, 0.1);
  border-color: #73c5fd;
  background-color: #73c5fd;
  color: white;
}

.fees_plan_price {
  color: #3b82f6;
  margin-bottom: 20px;
  font-size: 32px;
}
.fees_plan_highlighted .fees_plan_price {
  color: white;
  font-weight: 700;
}

.fees_plan_highlighted .fees_plan_features li {
  font-weight: 600;
}

.fees_plan_name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.fees_plan_description {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.fees_plan_features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fees_plan_features li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.fees_plan_features li:last-child {
  margin-bottom: 0;
}

.fees_migri {
}

.fees_migri_description {
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
  color: #4b5563;
  max-width: 500px;
  margin: 0 auto;
}

.fees_migri_item {
  margin: 0 auto 12px;
  max-width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fees_migri_label {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}

.fees_migri_amount {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.fees_note {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #1f2937;
  margin: 24px 0 24px 0;
}

/* Responsive styles for fees */
@media screen and (max-width: 768px) {
  .fees {
    padding: 32px 16px;
  }

  .fees_title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .fees_content {
    gap: 24px;
  }

  .fees_section {
    padding: 20px;
  }

  .fees_section_title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .fees_plans {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fees_plan {
    padding: 16px;
  }

  .fees_plan_name {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .fees_plan_description {
    font-size: 14px;
  }

  .fees_plan_features li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .fees_migri {
  }

  .fees_migri_description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .fees_migri_label {
    font-size: 14px;
  }

  .fees_migri_amount {
    font-size: 18px;
  }

  .fees_note {
    font-size: 16px;
    margin: 20px 0 0 0;
  }
}
