.page-header {
  position: relative;
  padding: 16rem 0 8rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.92) 0%, rgba(251, 146, 60, 0.88) 50%, rgba(251, 191, 36, 0.85) 100%);
  z-index: 1;
}

.page-header .page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.page-header .page-header-content .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-header .page-header-content .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.page-header .page-header-content .breadcrumb a:hover {
  color: #ffffff;
}

.page-header .page-header-content .breadcrumb .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .page-header-content .breadcrumb .breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

.page-header .page-header-content .page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .page-header .page-header-content .page-title {
    font-size: 4rem;
  }
}

.page-header .page-header-content .page-description {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  max-width: 40rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-header .page-header-content .page-description {
    font-size: 2rem;
  }
}

.contact-info-section {
  padding: 4rem 0;
  background: #ffffff;
}

.contact-info-section .contact-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-info-section .contact-info-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-section .contact-info-grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-section .contact-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-section .contact-info-card:hover {
  border-color: #f97316;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-section .contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, #f97316 0%, #1e40af 100%);
  color: #ffffff;
}

.contact-info-section .contact-info-card .contact-info-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(30, 64, 175, 0.08) 100%);
  color: #f97316;
  border-radius: 1rem;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-section .contact-info-card .contact-info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-info-section .contact-info-card .contact-info-text {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.7;
}

.contact-form-section {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.contact-form-section .contact-form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form-section .contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-section .contact-form-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-form-section .contact-form-header .section-title {
    font-size: 2.5rem;
  }
}

.contact-form-section .contact-form-header .section-description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
}

.contact-form-section .contact-form-content {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .contact-form-section .contact-form-content {
    padding: 2rem 1.5rem;
  }
}

.contact-form-section .contact-form-content .contact-form .form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-section .contact-form-content .contact-form .form-row {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.contact-form-section .contact-form-content .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-section .contact-form-content .contact-form .form-label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-form-section .contact-form-content .contact-form .form-label .required {
  color: #dc2626;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.contact-form-section .contact-form-content .contact-form .form-label .optional {
  color: #000000;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  background: rgba(248, 250, 252, 0.5);
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.contact-form-section .contact-form-content .contact-form .form-input,
.contact-form-section .contact-form-content .contact-form .form-select,
.contact-form-section .contact-form-content .contact-form .form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #1a1a1a;
  font-family: inherit;
}

.contact-form-section .contact-form-content .contact-form .form-input:focus,
.contact-form-section .contact-form-content .contact-form .form-select:focus,
.contact-form-section .contact-form-content .contact-form .form-textarea:focus {
  outline: none;
  border-color: #f97316;
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-form-section .contact-form-content .contact-form .form-input::-webkit-input-placeholder,
.contact-form-section .contact-form-content .contact-form .form-select::-webkit-input-placeholder,
.contact-form-section .contact-form-content .contact-form .form-textarea::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .contact-form .form-input:-ms-input-placeholder,
.contact-form-section .contact-form-content .contact-form .form-select:-ms-input-placeholder,
.contact-form-section .contact-form-content .contact-form .form-textarea:-ms-input-placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .contact-form .form-input::-ms-input-placeholder,
.contact-form-section .contact-form-content .contact-form .form-select::-ms-input-placeholder,
.contact-form-section .contact-form-content .contact-form .form-textarea::-ms-input-placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .contact-form .form-input::placeholder,
.contact-form-section .contact-form-content .contact-form .form-select::placeholder,
.contact-form-section .contact-form-content .contact-form .form-textarea::placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .contact-form .form-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-section .contact-form-content .contact-form .form-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.contact-form-section .contact-form-content .contact-form .form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.contact-form-section .contact-form-content .contact-form .form-checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-form-section .contact-form-content .contact-form .form-checkbox .checkbox-label {
  font-size: 0.9375rem;
  color: #1a1a1a;
  line-height: 1.6;
}

.contact-form-section .contact-form-content .contact-form .form-checkbox .checkbox-label a {
  color: #f97316;
  text-decoration: underline;
}

.contact-form-section .contact-form-content .contact-form .form-checkbox .checkbox-label a:hover {
  color: #1e40af;
}

.contact-form-section .contact-form-content .contact-form .form-actions {
  margin-top: 2rem;
  text-align: center;
}

.contact-form-section .contact-form-content .contact-form .form-actions .btn {
  min-width: 200px;
}

.contact-form-section .contact-form-content .contact-form .form-actions .btn i {
  margin-right: 0.5rem;
}

.contact-form-section .contact-form-content .wpcf7-form p {
  margin-bottom: 1.5rem;
}

.contact-form-section .contact-form-content .wpcf7-form label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"],
.contact-form-section .contact-form-content .wpcf7-form input[type="email"],
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"],
.contact-form-section .contact-form-content .wpcf7-form textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #1a1a1a;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"]:focus,
.contact-form-section .contact-form-content .wpcf7-form input[type="email"]:focus,
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"]:focus,
.contact-form-section .contact-form-content .wpcf7-form textarea:focus {
  outline: none;
  border-color: #f97316;
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"]::-webkit-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="email"]::-webkit-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"]::-webkit-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form textarea::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"]:-ms-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="email"]:-ms-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"]:-ms-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form textarea:-ms-input-placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"]::-ms-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="email"]::-ms-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"]::-ms-input-placeholder,
.contact-form-section .contact-form-content .wpcf7-form textarea::-ms-input-placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="text"]::placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="email"]::placeholder,
.contact-form-section .contact-form-content .wpcf7-form input[type="tel"]::placeholder,
.contact-form-section .contact-form-content .wpcf7-form textarea::placeholder {
  color: #000000;
  opacity: 0.6;
}

.contact-form-section .contact-form-content .wpcf7-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="submit"],
.contact-form-section .contact-form-content .wpcf7-form .wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 1.5rem;
  width: 100%;
  padding: 0.875rem 2rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.contact-form-section .contact-form-content .wpcf7-form input[type="submit"]:hover,
.contact-form-section .contact-form-content .wpcf7-form .wpcf7-submit:hover {
  background: #d65b06;
}

.contact-form-section .contact-form-content .default-contact-form .form-notice {
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #1a1a1a;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder {
  text-align: center;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder ol {
  text-align: left;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #000000;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder p {
  margin: 2rem 0 1.5rem;
  color: #1a1a1a;
}

.contact-form-section .contact-form-content .default-contact-form .form-placeholder .btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.faq-section {
  padding: 5rem 0;
  background: rgba(248, 250, 252, 0.3);
}

.faq-section .faq-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.faq-section .faq-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-section .faq-header .section-title {
    font-size: 2.5rem;
  }
}

.faq-section .faq-header .section-description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
}

.faq-section .faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.faq-section .faq-item {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.faq-section .faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f97316), to(#1e40af));
  background: linear-gradient(180deg, #f97316 0%, #1e40af 100%);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section .faq-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-item:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.faq-section .faq-item:hover .faq-question {
  color: #f97316;
}

.faq-section .faq-item .faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.faq-section .faq-item .faq-question::before {
  content: 'Q';
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #f97316 0%, #1e40af 100%);
  color: #ffffff;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.1rem;
}

.faq-section .faq-item .faq-answer {
  color: #000000;
  line-height: 1.8;
  font-size: 0.9375rem;
  padding-left: 2.75rem;
}

.faq-section .faq-item .faq-answer a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.faq-section .faq-item .faq-answer a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.map-section {
  padding: 5rem 0;
  background: #ffffff;
}

.map-section .map-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.map-section .map-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .map-section .map-header .section-title {
    font-size: 2.5rem;
  }
}

.map-section .map-header .section-description {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.7;
  font-weight: 600;
}

.map-section .map-placeholder {
  max-width: 64rem;
  margin: 0 auto;
  background: rgba(248, 250, 252, 0.3);
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-section .map-placeholder .map-notice {
  padding: 0;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-section .map-placeholder .map-notice iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-section .map-placeholder .map-info {
  padding: 2.5rem;
  background: #ffffff;
}

.map-section .map-placeholder .map-info p {
  font-size: 1rem;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
}

.map-section .map-placeholder .map-info p:last-child {
  margin-bottom: 0;
}

.map-section .map-placeholder .map-info p strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 6rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(30, 64, 175, 0.08) 100%);
  color: #f97316;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.map-section .map-placeholder iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-greeting-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-greeting-section .contact-greeting-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-greeting-section .contact-greeting-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.88) 0%, rgba(26, 54, 93, 0.82) 100%);
}

.contact-greeting-section .container {
  position: relative;
  z-index: 10;
}

.contact-greeting-section .section-label {
  color: #ffffff;
  text-align: left;
}

.contact-greeting-section .section-title {
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-greeting-section .section-title {
    font-size: 2.5rem;
  }
}

.contact-greeting-section .contact-greeting-content {
  text-align: left;
}

.contact-greeting-section .greeting-intro {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 2;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-greeting-section .greeting-intro {
    font-size: 2rem;
  }
}

.contact-greeting-section .greeting-intro .greeting-highlight {
  color: #ffffff;
  font-weight: 700;
}

.contact-greeting-section .greeting-quote-block {
  margin-bottom: 2rem;
}

.contact-greeting-section .greeting-quote-block .greeting-quote-label {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.contact-greeting-section .greeting-quote-block .greeting-quote {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.9;
  padding: 1.5rem 2rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #f97316;
  border-radius: 0 0.5rem 0.5rem 0;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-greeting-section .greeting-quote-block .greeting-quote {
    font-size: 1.0625rem;
  }
}

.contact-greeting-section .greeting-detail {
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  text-align: left;
}

.contact-greeting-section .greeting-conclusion {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-greeting-section .greeting-supporters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.contact-greeting-section .greeting-supporters .greeting-supporters-label {
  font-size: 0.8125rem;
  color: #ffffff;
}

.contact-greeting-section .greeting-supporters .greeting-supporter-item {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #ffffff;
}

.contact-greeting-section .greeting-cta {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-greeting-section .greeting-cta .greeting-cta-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .contact-greeting-section .greeting-cta .greeting-cta-main {
    font-size: 1.5rem;
  }
}

.contact-greeting-section .greeting-cta .greeting-cta-sub {
  font-size: 1.0625rem;
  color: #ffffff;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-greeting-section .greeting-cta .greeting-cta-sub {
    font-size: 1.125rem;
  }
}

.contact-greeting-section .pc-only {
  display: none;
}

@media (min-width: 768px) {
  .contact-greeting-section .pc-only {
    display: inline;
  }
}

.contact-info-section-new {
  padding: 6rem 0;
  background: #ffffff;
}

.contact-info-section-new .contact-info-grid-new {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .contact-info-section-new .contact-info-grid-new {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-section-new .contact-info-grid-new {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-section-new .contact-info-card-new {
  background: #fafafa;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.contact-info-section-new .contact-info-card-new .contact-info-icon-new {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.contact-info-section-new .contact-info-card-new .contact-info-title-new {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-info-section-new .contact-info-card-new .contact-info-text-new {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.6;
}

.contact-form-section-new {
  padding: 6rem 0;
  background: #fafafa;
}

.contact-form-section-new .contact-form-wrapper-new {
  margin-top: 3rem;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-form-section-new .contact-form-wrapper-new {
    padding: 3rem;
  }
}

.contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form p {
  margin: 0;
}

.contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 0 0 1.5rem 0;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  border: none;
}

.contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors, .contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-acceptance-missing {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  display: block;
}

.contact-form-section-new .contact-form-wrapper-new .wpcf7 .wpcf7-form .wpcf7-spinner {
  display: none;
}

.contact-form-section-new .contact-form-wrapper-new .cf7-notice {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.contact-form-section-new .contact-form-wrapper-new .cf7-notice p {
  margin: 0;
  color: #92400e;
  font-size: 0.9375rem;
}

.contact-form-section-new .contact-form-wrapper-new .cf7-notice p i {
  margin-right: 0.5rem;
  color: #f59e0b;
}

.contact-form-section-new .form-row-new {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-section-new .form-row-new {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form-section-new .form-group-new {
  margin-bottom: 1.5rem;
}

.contact-form-section-new .form-group-new:last-of-type {
  margin-bottom: 0;
}

.contact-form-section-new .form-label-new {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-form-section-new .form-label-new .required-new {
  font-size: 0.75rem;
  color: #ffffff;
  background: #f97316;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.contact-form-section-new .form-label-new .optional-new {
  font-size: 0.75rem;
  color: #000000;
  background: #e2e8f0;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.contact-form-section-new .form-input-new,
.contact-form-section-new .form-select-new,
.contact-form-section-new .form-textarea-new,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"],
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"],
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"],
.contact-form-section-new .wpcf7-form-control-wrap select,
.contact-form-section-new .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  font-family: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact-form-section-new .form-input-new:focus,
.contact-form-section-new .form-select-new:focus,
.contact-form-section-new .form-textarea-new:focus,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"]:focus,
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"]:focus,
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"]:focus,
.contact-form-section-new .wpcf7-form-control-wrap select:focus,
.contact-form-section-new .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #f97316;
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-form-section-new .form-input-new::-webkit-input-placeholder,
.contact-form-section-new .form-select-new::-webkit-input-placeholder,
.contact-form-section-new .form-textarea-new::-webkit-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"]::-webkit-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"]::-webkit-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"]::-webkit-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap select::-webkit-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #000000;
}

.contact-form-section-new .form-input-new:-ms-input-placeholder,
.contact-form-section-new .form-select-new:-ms-input-placeholder,
.contact-form-section-new .form-textarea-new:-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"]:-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"]:-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"]:-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap select:-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  color: #000000;
}

.contact-form-section-new .form-input-new::-ms-input-placeholder,
.contact-form-section-new .form-select-new::-ms-input-placeholder,
.contact-form-section-new .form-textarea-new::-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"]::-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"]::-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"]::-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap select::-ms-input-placeholder,
.contact-form-section-new .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #000000;
}

.contact-form-section-new .form-input-new::placeholder,
.contact-form-section-new .form-select-new::placeholder,
.contact-form-section-new .form-textarea-new::placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"]::placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"]::placeholder,
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"]::placeholder,
.contact-form-section-new .wpcf7-form-control-wrap select::placeholder,
.contact-form-section-new .wpcf7-form-control-wrap textarea::placeholder {
  color: #000000;
}

.contact-form-section-new .form-input-new.wpcf7-not-valid,
.contact-form-section-new .form-select-new.wpcf7-not-valid,
.contact-form-section-new .form-textarea-new.wpcf7-not-valid,
.contact-form-section-new .wpcf7-form-control-wrap input[type="text"].wpcf7-not-valid,
.contact-form-section-new .wpcf7-form-control-wrap input[type="email"].wpcf7-not-valid,
.contact-form-section-new .wpcf7-form-control-wrap input[type="tel"].wpcf7-not-valid,
.contact-form-section-new .wpcf7-form-control-wrap select.wpcf7-not-valid,
.contact-form-section-new .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border-color: #dc2626;
}

.contact-form-section-new .form-textarea-new,
.contact-form-section-new .wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form-section-new .form-select-new,
.contact-form-section-new .wpcf7-form-control-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form-section-new .form-checkbox-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.contact-form-section-new .form-checkbox-new input[type="checkbox"],
.contact-form-section-new .form-checkbox-new .wpcf7-acceptance input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #f97316;
  cursor: pointer;
}

.contact-form-section-new .form-checkbox-new .checkbox-label-new {
  font-size: 0.9375rem;
  color: #000000;
}

.contact-form-section-new .form-checkbox-new .checkbox-label-new a {
  color: #f97316;
  text-decoration: none;
}

.contact-form-section-new .form-checkbox-new .checkbox-label-new a:hover {
  text-decoration: underline;
}

.contact-form-section-new .form-actions-new {
  margin-top: 2rem;
  text-align: center;
}

.contact-form-section-new .form-actions-new .btn-submit-new,
.contact-form-section-new .form-actions-new input[type="submit"].wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  min-width: 16rem;
  padding: 1rem 2rem;
  background: #f97316;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  font-family: inherit;
}

.contact-form-section-new .form-actions-new .btn-submit-new:hover:not(:disabled),
.contact-form-section-new .form-actions-new input[type="submit"].wpcf7-submit:hover:not(:disabled) {
  background: #ef6606;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.contact-form-section-new .form-actions-new .btn-submit-new:disabled,
.contact-form-section-new .form-actions-new input[type="submit"].wpcf7-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-section-new .form-actions-new .wpcf7-spinner {
  margin-left: 1rem;
}

.contact-form-section-new .recaptcha-notice {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #000000;
  text-align: center;
  line-height: 1.6;
}

.contact-form-section-new .recaptcha-notice a {
  color: #000000;
  text-decoration: underline;
}

.contact-form-section-new .recaptcha-notice a:hover {
  color: #f97316;
}

.contact-form-section-new .contact-form-message {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-form-section-new .contact-form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.contact-form-section-new .contact-form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.faq-section-new {
  padding: 6rem 0;
  background: #ffffff;
}

.faq-section-new .faq-list-new {
  margin-top: 3rem;
}

.faq-section-new .faq-list-new .faq-item-new {
  background: #fafafa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-section-new .faq-list-new .faq-item-new:last-child {
  margin-bottom: 0;
}

.faq-section-new .faq-list-new .faq-item-new .faq-question-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-section-new .faq-list-new .faq-item-new .faq-question-new .faq-icon {
  font-size: 1.25rem;
  color: #f97316;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.125rem;
}

.faq-section-new .faq-list-new .faq-item-new .faq-question-new h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
}

.faq-section-new .faq-list-new .faq-item-new .faq-answer-new {
  padding-left: 2.25rem;
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.8;
}

.faq-section-new .faq-list-new .faq-item-new .faq-answer-new a {
  color: #f97316;
  text-decoration: none;
}

.faq-section-new .faq-list-new .faq-item-new .faq-answer-new a:hover {
  text-decoration: underline;
}

.thanks-section {
  padding: 5rem 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#ffffff));
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .thanks-section {
    padding: 6rem 2rem;
  }
}

.thanks-section .container {
  width: 100%;
}

.thanks-section .thanks-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

@media (min-width: 768px) {
  .thanks-section .thanks-content {
    padding: 4rem 3.5rem;
  }
}

.thanks-section .thanks-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks-section .thanks-icon i {
  font-size: 3rem;
  color: #22c55e;
  -webkit-animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
          animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 768px) {
  .thanks-section .thanks-icon {
    width: 7rem;
    height: 7rem;
    margin-bottom: 2.5rem;
  }
  .thanks-section .thanks-icon i {
    font-size: 3.5rem;
  }
}

.thanks-section .thanks-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .thanks-section .thanks-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.thanks-section .thanks-message {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .thanks-section .thanks-message {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.thanks-section .thanks-description {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 2;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .thanks-section .thanks-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.thanks-section .thanks-description strong {
  color: #f97316;
  font-weight: 600;
}

.thanks-section .thanks-notice {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .thanks-section .thanks-notice {
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
  }
}

.thanks-section .thanks-notice p:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.thanks-section .thanks-notice p:first-child i {
  color: #f59e0b;
  font-size: 1.125rem;
}

.thanks-section .thanks-notice p:first-child strong {
  font-size: 0.9375rem;
  color: #92400e;
}

.thanks-section .thanks-notice p:last-child {
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.8;
  margin: 0;
  padding-left: 1.75rem;
}

@media (min-width: 768px) {
  .thanks-section .thanks-notice p:last-child {
    padding-left: 0;
  }
}

.thanks-section .thanks-notice p:last-child a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.thanks-section .thanks-notice p:last-child a:hover {
  text-decoration: underline;
}

.thanks-section .thanks-actions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .thanks-section .thanks-actions {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }
}

.thanks-section .thanks-actions .btn-back-to-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #f97316;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
          box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.thanks-section .thanks-actions .btn-back-to-list:hover {
  background: #ef6606;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
          box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.thanks-section .thanks-actions .btn-back-to-list .btn-back-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.75rem;
}

.thanks-section .sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .thanks-section .sp-only {
    display: none;
  }
}

.thanks-section .pc-only {
  display: none;
}

@media (min-width: 768px) {
  .thanks-section .pc-only {
    display: inline;
  }
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.map-section-new {
  padding: 6rem 0;
  background: #fafafa;
}

.map-section-new .map-wrapper-new {
  margin-top: 3rem;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
}

.map-section-new .map-wrapper-new .map-embed-new iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-section-new .map-wrapper-new .map-info-new {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.map-section-new .map-wrapper-new .map-info-new .map-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.map-section-new .map-wrapper-new .map-info-new .map-info-item i {
  color: #f97316;
  font-size: 1.125rem;
}

.map-section-new .map-wrapper-new .map-info-new .map-info-item p {
  font-size: 0.9375rem;
  color: #000000;
}
/*# sourceMappingURL=contact.css.map */