@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}
@media (max-width: 991px) {
  html {
    font-size: 95%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}
@media (max-width: 374px) {
  html {
    font-size: 81.25%;
  }
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1030;
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212121;
}
header .logo a {
  color: #212121;
  text-decoration: none;
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
header nav a:hover {
  color: #0066ff;
}
header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1050;
}
header .hamburger .hamburger-line {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
header .hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}
header .hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
header .hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px);
}
header .header-cta {
  background: #87ceeb;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
header .header-cta:hover {
  background: rgb(91.2857142857, 188.15, 227.7142857143);
  transform: translateY(-2px);
}
header .header-cta {
  padding: 12px 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
header .header-cta .header-cta-sub {
  font-size: 0.75rem;
}
header .header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}
@media (max-width: 767px) {
  header {
    padding: 0.75rem 0;
  }
  header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  header .logo {
    font-size: 1.25rem;
    flex: 0 0 auto;
  }
  header nav:not(.nav-menu) {
    display: none;
  }
  header .hamburger {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }
  header nav.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1049;
  }
  header nav.nav-menu.active {
    transform: translateY(0);
  }
  header nav.nav-menu ul {
    flex-direction: column;
    padding: 5rem 0 1rem;
    gap: 0;
  }
  header nav.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
  }
  header nav.nav-menu li:last-child {
    border-bottom: none;
  }
  header nav.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #333;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-start;
  }
  header nav.nav-menu a:hover {
    background: #f8f9fa;
    color: #0066ff;
  }
  header .header-cta {
    display: none;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  header .logo {
    font-size: 1.375rem;
  }
  header nav a {
    font-size: 0.9rem;
  }
  header .header-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0;
  padding-bottom: 30px;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 40px;
}
footer .footer-company h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
footer .footer-company p {
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 10px;
}
footer .footer-links h4 {
  font-size: 1rem;
  margin-bottom: 15px;
}
footer .footer-links ul {
  list-style: none;
}
footer .footer-links li {
  margin-bottom: 10px;
}
footer .footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}
footer .footer-links a:hover {
  color: white;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #34495e;
  color: #7f8c8d;
}
@media (max-width: 767px) {
  footer {
    padding: 3rem 0 2rem;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
  footer .footer-company {
    text-align: center;
  }
  footer .footer-company h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
  }
  footer .footer-company p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }
  footer .footer-links {
    text-align: center;
  }
  footer .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
  }
  footer .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  footer .footer-links li {
    margin-bottom: 0;
  }
  footer .footer-links a {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    display: inline-block;
    min-height: 2.5rem;
    line-height: 1.4;
  }
  footer .footer-links a:hover, footer .footer-links a:focus {
    color: #87ceeb;
  }
  footer .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  footer .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  footer {
    padding: 4rem 0 2.5rem;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  footer .footer-company h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  footer .footer-company p {
    font-size: 0.95rem;
    margin-bottom: 0.625rem;
  }
  footer .footer-links h4 {
    font-size: 1.063rem;
    margin-bottom: 1.25rem;
  }
  footer .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
  }
  footer .footer-links a {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
  footer .footer-bottom {
    padding-top: 2rem;
  }
  footer .footer-bottom p {
    font-size: 0.875rem;
  }
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #87ceeb;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.floating-cta:hover {
  background: rgb(91.2857142857, 188.15, 227.7142857143);
  transform: translateY(-2px);
}
.floating-cta {
  padding: 15px 30px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1049;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(135, 206, 235, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(135, 206, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(135, 206, 235, 0);
  }
}
.floating-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .floating-cta {
    bottom: 1.5rem;
    right: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    gap: 0.5rem;
    border-radius: 2rem;
  }
  .floating-cta span:first-child {
    font-size: 1.125rem;
  }
  .floating-cta span:last-child {
    display: none;
  }
  .floating-cta:hover {
    transform: translateY(-3px);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .floating-cta {
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
    gap: 0.625rem;
  }
  .floating-cta:hover {
    transform: translateY(-4px);
  }
}
@media (max-width: 374px) {
  .floating-cta {
    bottom: 1rem;
    right: 0.75rem;
    padding: 0.625rem 1rem;
  }
  .floating-cta span:first-child {
    font-size: 1rem;
  }
}

.primary-cta,
.btn-primary {
  background: #0066ff;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.primary-cta:hover,
.btn-primary:hover {
  background: rgb(0, 81.6, 204);
  transform: translateY(-2px);
}
.primary-cta,
.btn-primary {
  padding: 18px 40px;
  font-size: 1.125rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.primary-cta:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.secondary-cta,
.btn-secondary {
  background: transparent;
  color: white;
  padding: 18px 40px;
  font-size: 1.125rem;
  border: 2px solid white;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.secondary-cta:hover,
.btn-secondary:hover {
  background: white;
  color: #87ceeb;
}

.course-cta {
  background: #0066ff;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.course-cta:hover {
  background: #004acc;
  transform: translateY(-2px);
}
.course-cta {
  padding: 15px 30px;
  border-radius: 25px;
  text-align: center;
  display: block;
}
.course-cta:hover {
  transform: translateY(-2px);
}

.form-submit {
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}
.form-submit {
  padding: 18px;
  font-size: 1.125rem;
  border-radius: 30px;
  width: 100%;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.btn-experience {
  background: #ff6b35;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-experience:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}
.btn-experience {
  padding: 18px 40px;
  font-size: 1.125rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-experience:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.problem-card,
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.problem-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
}
.problem-card,
.testimonial-card {
  text-align: center;
}

.course-card {
  background: white;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.course-card:hover {
  transform: translateY(-5px);
}
.course-card {
  overflow: hidden;
  position: relative;
}
.course-card.recommended {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.course-card .recommended-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #ff6b35;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}
.course-card .course-header {
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.course-card .course-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}
.course-card .course-header {
  padding: 30px;
  text-align: center;
  margin: 0;
  width: 100%;
}
.course-card .course-header:hover {
  transform: none;
  box-shadow: none;
}
.course-card .course-header .course-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.course-card .course-header .course-target {
  font-size: 0.875rem;
  opacity: 0.9;
}
.course-card .course-body {
  padding: 30px;
}
.course-card .course-duration {
  background: #0066ff;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
.course-card .course-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}
.course-card .price-note {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 20px;
  text-align: center;
}
.course-card .course-includes {
  list-style: none;
  margin-bottom: 30px;
}
.course-card .course-includes li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
  font-size: 0.875rem;
}
.course-card .course-includes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 700;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}
.form-container .form-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}
.form-container .form-tabs .form-tab {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.form-container .form-tabs .form-tab:hover {
  color: #333;
  background: rgba(135, 206, 235, 0.05);
}
.form-container .form-tabs .form-tab.active {
  color: #87ceeb;
  font-weight: 700;
  border-bottom-color: #87ceeb;
  background: rgba(135, 206, 235, 0.1);
}
.form-container .form-content {
  display: none;
}
.form-container .form-content.active {
  display: block;
}
.form-container .form-header {
  text-align: center;
  margin-bottom: 30px;
}
.form-container .form-header .form-timer {
  background: #87ceeb;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.form-container .form-header .form-timer:hover {
  background: rgb(91.2857142857, 188.15, 227.7142857143);
  transform: translateY(-2px);
}
.form-container .form-header .form-timer {
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
}
.form-container .form-header .form-timer:hover {
  transform: none;
}
.form-container .form-group {
  margin-bottom: 25px;
}
.form-container .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #333;
}
.form-container .form-group input,
.form-container .form-group select,
.form-container .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-container .form-group input:focus,
.form-container .form-group select:focus,
.form-container .form-group textarea:focus {
  outline: none;
  border-color: #87ceeb;
}
.form-container .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-container .wpcf7 .screen-reader-response {
  display: none;
}
.form-container .wpcf7 form.wpcf7-form p {
  margin-bottom: 25px;
}
.form-container .wpcf7 form.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #333;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #87ceeb;
}
.form-container .wpcf7 form.wpcf7-form textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 100px;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  color: #87ceeb;
  font-size: 0.875rem;
  margin-top: 6px;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: #87ceeb;
  background: rgba(135, 206, 235, 0.03);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 5px;
  border: 2px solid #87ceeb;
  background: rgba(135, 206, 235, 0.05);
  color: #333;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-submit {
  background: #87ceeb;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-submit:hover {
  background: rgb(91.2857142857, 188.15, 227.7142857143);
  transform: translateY(-2px);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 10px;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7-spinner {
  margin-left: 8px;
}
.form-container .wpcf7 form.wpcf7-form .cm4cf7-confirm-value {
  display: block;
  width: 100%;
  padding: 12px;
  border: 2px dashed #e0e0e0;
  border-radius: 5px;
  background: #fff;
  color: #333;
  margin-top: 8px;
  word-break: break-word;
}
.form-container .wpcf7 form.wpcf7-form .cm4cf7-confirm-value + input,
.form-container .wpcf7 form.wpcf7-form .cm4cf7-confirm-value + select,
.form-container .wpcf7 form.wpcf7-form .cm4cf7-confirm-value + textarea {
  display: none !important;
}
.form-container .wpcf7 form.wpcf7-form p:has(.cm4cf7-return-button) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.form-container .wpcf7 form.wpcf7-form p:has(.cm4cf7-return-button) .wpcf7-submit {
  width: auto;
  padding: 12px 24px;
  border-radius: 10px;
}
.form-container .wpcf7 form.wpcf7-form .cm4cf7-return-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 2px solid #87ceeb;
  background: transparent;
  color: #87ceeb;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.form-container .wpcf7 form.wpcf7-form .cm4cf7-return-button:hover {
  background: rgba(135, 206, 235, 0.08);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-conf {
  background-color: transparent;
  border: none;
  color: #87ceeb;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-conf:hover {
  color: rgb(91.2857142857, 188.15, 227.7142857143);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-btn {
  background: #87ceeb;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-btn:hover {
  background: rgb(91.2857142857, 188.15, 227.7142857143);
  transform: translateY(-2px);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 10px;
  margin: 0 10px 10px 0;
  transition: all 0.3s;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-btn:hover {
  transform: translateY(-2px);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step1 {
  display: block;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step2 {
  display: none;
  background: rgba(135, 206, 235, 0.02);
  padding: 20px;
  border-radius: 5px;
  border: 1px solid rgba(135, 206, 235, 0.1);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step2 .form-group {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step2 label {
  font-weight: 700;
  color: #333;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step2 .wpcf7-form-control {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  pointer-events: none;
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step3 {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.form-container .wpcf7 form.wpcf7-form .wpcf7c-elm-step3 .wpcf7-response-output {
  background: #4caf50;
  color: white;
  border: none;
}
.form-container .wpcf7 form.wpcf7-form.wpcf7c-step2 .wpcf7c-elm-step1 {
  display: none;
}
.form-container .wpcf7 form.wpcf7-form.wpcf7c-step2 .wpcf7c-elm-step2 {
  display: block;
}
.form-container .wpcf7 form.wpcf7-form.wpcf7c-step3 .wpcf7c-elm-step1,
.form-container .wpcf7 form.wpcf7-form.wpcf7c-step3 .wpcf7c-elm-step2 {
  display: none;
}
.form-container .wpcf7 form.wpcf7-form.wpcf7c-step3 .wpcf7c-elm-step3 {
  display: block;
}
.form-container .required {
  color: #87ceeb;
  margin-left: 3px;
}
.form-container .form-note {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .form-container {
    padding: 2rem 1.5rem;
  }
  .form-container .form-tabs {
    margin-bottom: 1.5rem;
  }
  .form-container .form-tabs .form-tab {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .form-container .form-header {
    margin-bottom: 1.5rem;
  }
  .form-container .form-header .form-timer {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .form-container .form-header p {
    font-size: 0.875rem;
  }
  .form-container .form-group {
    margin-bottom: 1.25rem;
  }
  .form-container .form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
  .form-container .form-group input,
  .form-container .form-group select,
  .form-container .form-group textarea {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  .form-container .form-note {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .form-container {
    padding: 2.5rem 2rem;
  }
  .form-container .form-tabs .form-tab {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  .form-container .form-header .form-timer {
    font-size: 0.875rem;
  }
  .form-container .form-group label {
    font-size: 0.95rem;
  }
  .form-container .form-group input,
  .form-container .form-group select,
  .form-container .form-group textarea {
    font-size: 0.95rem;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-container .faq-categories {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}
.faq-container .faq-categories .faq-category {
  padding: 10px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}
.faq-container .faq-categories .faq-category.active {
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.faq-container .faq-categories .faq-category.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}
.faq-container .faq-categories .faq-category.active {
  border-color: transparent;
}
.faq-container .faq-categories .faq-category.active:hover {
  transform: none;
  box-shadow: none;
}
.faq-container .faq-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.faq-container .faq-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-container .faq-item .faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  transition: background 0.3s;
}
.faq-container .faq-item .faq-question:hover {
  background: #eff0f1;
}
.faq-container .faq-item .faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.faq-container .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-container .faq-item .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #666;
  line-height: 1.8;
}
.faq-container .faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

.logo-carousel-section {
  background: #ffffff;
  padding: 20px 0;
}
.logo-carousel-section .logo-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.logo-carousel-section .logo-slider-wrapper::before, .logo-carousel-section .logo-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.logo-carousel-section .logo-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
.logo-carousel-section .logo-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
.logo-carousel-section .logo-slider-wrapper:hover .logo-list {
  animation-play-state: paused;
}
.logo-carousel-section .logo-slider {
  display: flex;
  width: fit-content;
}
.logo-carousel-section .logo-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: slide-animation 35s linear infinite;
}
.logo-carousel-section .logo-item {
  margin: 0 40px;
  flex-shrink: 0;
}
.logo-carousel-section .logo-item img {
  height: 65px;
  width: auto;
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
  filter: grayscale(100%);
}
.logo-carousel-section .logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes slide-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .logo-carousel-section {
    padding: 1rem 0;
  }
  .logo-carousel-section .logo-slider-wrapper {
    padding: 0.75rem 0;
  }
  .logo-carousel-section .logo-slider-wrapper::before, .logo-carousel-section .logo-slider-wrapper::after {
    width: 50px;
  }
  .logo-carousel-section .logo-item {
    margin: 0 20px;
  }
  .logo-carousel-section .logo-item img {
    height: 45px;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .logo-carousel-section {
    padding: 1.5rem 0;
  }
  .logo-carousel-section .logo-item {
    margin: 0 30px;
  }
  .logo-carousel-section .logo-item img {
    height: 55px;
  }
}

.hero {
  margin-top: 45px;
  background: linear-gradient(135deg, #87ceeb 0%, #0066ff 100%);
  color: white;
  padding: 80px 0;
  padding-bottom: 60px;
  position: relative;
}
.hero .urgency-strip {
  background: #f44336;
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 1000;
}
.hero .hero-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}
.hero .hero-content .hero-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero .hero-content .hero-image .video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.hero .hero-content .hero-image .video-container .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.hero .hero-content .hero-image .video-container .video-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.hero .hero-content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .hero {
    margin-top: 4rem;
    padding: 3rem 0;
  }
  .hero .urgency-strip {
    font-size: 0.75rem;
    padding: 0.5rem;
    line-height: 1.3;
  }
  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
  }
  .hero .hero-text {
    padding-right: 0;
  }
  .hero .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .hero .hero-text .highlight {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }
  .hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .hero .cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero .cta-group a {
    min-width: 15rem;
    text-align: center;
    width: 100%;
    max-width: 20rem;
  }
  .hero .cta-note {
    font-size: 0.75rem;
    margin-top: 1rem;
  }
  .hero .hero-image {
    margin-top: 1rem;
  }
  .hero .hero-image .video-container {
    border-radius: 10px;
  }
  .hero .hero-image .video-container .hero-video {
    border-radius: 10px;
  }
  .hero .hero-image .video-container .video-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    margin-top: 2.5rem;
  }
  .hero .hero-text {
    padding-right: 0;
  }
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero .hero-text .highlight {
    font-size: 2.75rem;
  }
  .hero .cta-group {
    justify-content: center;
  }
  .hero .cta-group a {
    flex: 0 0 auto;
  }
}
.hero .hero-text {
  padding-right: 30px;
}
.hero .hero-text h1 {
  font-size: 2.875rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.hero .hero-text .highlight {
  color: #0066ff;
  font-size: 3.25rem;
  display: block;
  margin-bottom: 10px;
}
.hero .hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.8;
}
.hero .authority-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero .authority-badges .authority-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}
.hero .cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.hero .cta-note {
  font-size: 0.875rem;
  opacity: 0.9;
}
.hero .hero-image {
  position: relative;
}
.hero .hero-image .video-placeholder {
  background: #000;
  border-radius: 10px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
}
.hero .hero-image .video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #87ceeb;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.hero .hero-image .video-badge:hover {
  background: rgb(91.2857142857, 188.15, 227.7142857143);
  transform: translateY(-2px);
}
.hero .hero-image .video-badge {
  padding: 10px 20px;
  border-radius: 25px;
}
.hero .hero-image .video-badge:hover {
  transform: none;
}

.achievements-logos {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}
.achievements-logos .logo-carousel {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.achievements-logos .logo-carousel .achievement-item {
  text-align: center;
}
.achievements-logos .logo-carousel .achievement-item .achievement-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
}
.achievements-logos .logo-carousel .achievement-item .achievement-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .achievements-logos {
    padding: 2rem 0;
  }
  .achievements-logos .logo-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
  .achievements-logos .logo-carousel .achievement-item .achievement-number {
    font-size: 1.75rem;
  }
  .achievements-logos .logo-carousel .achievement-item .achievement-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .achievements-logos .logo-carousel {
    gap: 2rem;
  }
  .achievements-logos .logo-carousel .achievement-item .achievement-number {
    font-size: 2rem;
  }
}

.problem-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.problem-section .problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.problem-section .problem-cards .problem-card .problem-icon {
  width: 60px;
  height: 60px;
  background: #87ceeb;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.problem-section .problem-cards .problem-card .problem-title {
  font-size: 1.125rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}
.problem-section .problem-cards .problem-card .problem-description {
  color: #666;
  line-height: 1.8;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .problem-section {
    padding: 3rem 0;
  }
  .problem-section .problem-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .problem-section .problem-cards .problem-card {
    text-align: center;
    padding: 1.5rem;
  }
  .problem-section .problem-cards .problem-card .problem-icon {
    margin: 0 auto 1rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
  .problem-section .problem-cards .problem-card .problem-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .problem-section .problem-cards .problem-card .problem-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .problem-section .problem-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
    margin: 2.5rem auto 0;
  }
  .problem-section .problem-cards .problem-card {
    text-align: center;
    padding: 2rem;
  }
  .problem-section .problem-cards .problem-card .problem-icon {
    margin: 0 auto 1.25rem;
  }
}

.benefits {
  padding: 80px 0;
  background: white;
}
.benefits .benefit-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.8;
}
.benefits .benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefits .benefit-grid .benefit-item {
  text-align: center;
}
.benefits .benefit-grid .benefit-item .benefit-icon {
  width: 80px;
  height: 80px;
  background: #87ceeb;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  font-size: 36px;
}
.benefits .benefit-grid .benefit-item .benefit-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}
.benefits .benefit-grid .benefit-item .benefit-text {
  color: #666;
  line-height: 1.8;
}
.benefits .benefit-grid .benefit-item .benefit-text .benefit-highlight {
  color: #87ceeb;
  font-weight: 700;
}
@media (max-width: 767px) {
  .benefits {
    padding: 3rem 0;
  }
  .benefits .benefit-intro {
    max-width: 100%;
    margin: 0 0 2rem;
    font-size: 0.875rem;
    padding: 0 1rem;
  }
  .benefits .benefit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .benefits .benefit-grid .benefit-item .benefit-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
  }
  .benefits .benefit-grid .benefit-item .benefit-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .benefits .benefit-grid .benefit-item .benefit-text {
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .benefits .benefit-intro {
    font-size: 0.95rem;
  }
  .benefits .benefit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .benefits .benefit-grid .benefit-item .benefit-icon {
    width: 5rem;
    height: 5rem;
    font-size: 2.25rem;
  }
  .benefits .benefit-grid .benefit-item .benefit-title {
    font-size: 1.25rem;
  }
}

.service-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.service-section .course-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-section .payment-info {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .service-section {
    padding: 3rem 0;
  }
  .service-section .course-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .service-section .payment-info {
    margin-top: 2rem;
    padding: 1.25rem;
    font-size: 0.875rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .service-section .course-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-section .payment-info {
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.differentiation {
  padding: 80px 0;
  background: white;
}
.differentiation .diff-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 50px;
}
.differentiation .diff-content .diff-points {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.differentiation .diff-content .diff-points .diff-point {
  display: flex;
  gap: 20px;
  align-items: start;
}
.differentiation .diff-content .diff-points .diff-point .diff-number {
  width: 40px;
  height: 40px;
  background: #87ceeb;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  font-size: 1rem;
  flex-shrink: 0;
}
.differentiation .diff-content .diff-points .diff-point .diff-text h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: #333;
}
.differentiation .diff-content .diff-points .diff-point .diff-text p {
  color: #666;
  line-height: 1.8;
  font-size: 0.875rem;
}
.differentiation .comparison-table {
  margin: 20px 0;
  overflow: hidden;
}
.differentiation .comparison-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  border: 1px solid #e0e0e0;
}
.differentiation .comparison-table th {
  background: #f8f9fa;
  padding: 15px;
  text-align: left;
  font-size: 0.875rem;
  border: 1px solid #e0e0e0;
  white-space: nowrap;
  width: auto;
}
.differentiation .comparison-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
  font-size: 0.875rem;
  white-space: nowrap;
  width: auto;
}
.differentiation .comparison-table .our-column {
  background: #fff9e6;
  font-weight: 700;
}
.differentiation .comparison-table .check {
  color: #4caf50;
  font-size: 1.25rem;
}
.differentiation .comparison-table .cross {
  color: #f44336;
  font-size: 1.25rem;
}
.differentiation .comparison-table .triangle {
  color: #ff9800;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .differentiation {
    padding: 3rem 0;
  }
  .differentiation .diff-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .differentiation .diff-content .diff-points {
    gap: 1.5rem;
  }
  .differentiation .diff-content .diff-points .diff-point {
    gap: 1rem;
    align-items: center;
  }
  .differentiation .diff-content .diff-points .diff-point .diff-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }
  .differentiation .diff-content .diff-points .diff-point .diff-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .differentiation .diff-content .diff-points .diff-point .diff-text p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  .differentiation .comparison-table {
    margin: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .differentiation .comparison-table table {
    min-width: 500px;
  }
  .differentiation .comparison-table th, .differentiation .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .differentiation .comparison-table .check, .differentiation .comparison-table .cross, .differentiation .comparison-table .triangle {
    font-size: 1rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .differentiation .diff-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .differentiation .diff-content .diff-points {
    gap: 2rem;
  }
  .differentiation .diff-content .diff-points .diff-point {
    gap: 1.5rem;
  }
  .differentiation .diff-content .diff-points .diff-point .diff-number {
    width: 3rem;
    height: 3rem;
  }
  .differentiation .diff-content .diff-points .diff-point .diff-text h4 {
    font-size: 1.125rem;
  }
  .differentiation .comparison-table th, .differentiation .comparison-table td {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.process {
  padding: 80px 0;
  background: #f8f9fa;
}
.process .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}
.process .process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #87ceeb, #0066ff);
  z-index: 0;
}
.process .process-steps .process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process .process-steps .process-step .step-circle {
  width: 60px;
  height: 60px;
  background: #87ceeb;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  background: white;
  border: 3px solid #87ceeb;
  color: #87ceeb;
}
.process .process-steps .process-step .step-title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}
.process .process-steps .process-step .step-description {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}
.process .process-steps .process-step .step-duration {
  color: #87ceeb;
  font-weight: 700;
  margin-top: 10px;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .process {
    padding: 3rem 0;
  }
  .process .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .process .process-steps::before {
    display: none;
  }
  .process .process-steps .process-step .step-circle {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    margin: 0 auto 0.75rem;
    border-width: 2px;
  }
  .process .process-steps .process-step .step-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .process .process-steps .process-step .step-description {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  .process .process-steps .process-step .step-duration {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .process .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .process .process-steps::before {
    display: none;
  }
  .process .process-steps .process-step .step-circle {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.125rem;
  }
  .process .process-steps .process-step .step-title {
    font-size: 1rem;
  }
  .process .process-steps .process-step .step-description {
    font-size: 0.875rem;
  }
  .process .process-steps .process-step .step-duration {
    font-size: 0.875rem;
  }
}

.faq {
  padding: 80px 0;
  background: white;
}

.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}
.testimonials .testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.testimonials .testimonial-cards .testimonial-card .testimonial-header {
  margin-bottom: 20px;
}
.testimonials .testimonial-cards .testimonial-card .testimonial-header .testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  text-align: left;
}
.testimonials .testimonial-cards .testimonial-card .testimonial-header .testimonial-info p {
  color: #666;
  font-size: 0.875rem;
  text-align: left;
}
.testimonials .testimonial-cards .testimonial-card .testimonial-text {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.testimonials .testimonial-cards .testimonial-card .testimonial-result {
  background: #e8f4ff;
  padding: 10px 15px;
  border-radius: 5px;
  color: #333;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .testimonials {
    padding: 3rem 0;
  }
  .testimonials .testimonial-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .testimonials .testimonial-cards .testimonial-card {
    padding: 1.5rem;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-header {
    margin-bottom: 1rem;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-header .testimonial-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    text-align: left;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-header .testimonial-info p {
    font-size: 0.75rem;
    text-align: left;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-result {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    display: block;
    text-align: center;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .testimonials .testimonial-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonials .testimonial-cards .testimonial-card {
    padding: 2rem;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-header .testimonial-info h4 {
    font-size: 0.95rem;
    text-align: left;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-header .testimonial-info p {
    text-align: left;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-text {
    font-size: 0.875rem;
  }
  .testimonials .testimonial-cards .testimonial-card .testimonial-result {
    font-size: 0.875rem;
  }
}

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  color: white;
  text-align: center;
}
.final-cta h2 {
  font-size: 2.625rem;
  margin-bottom: 20px;
}
.final-cta .final-cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
}
.final-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.final-cta .contact-options {
  margin-top: 30px;
}
.final-cta .contact-options a {
  color: white;
  font-size: 1.25rem;
  margin: 0 15px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .final-cta {
    padding: 3rem 0;
  }
  .final-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .final-cta .final-cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    line-height: 1.5;
  }
  .final-cta .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .final-cta .cta-buttons a {
    min-width: 15rem;
    width: 100%;
    max-width: 20rem;
    padding: 0.875rem 1.5rem;
  }
  .final-cta .contact-options {
    margin-top: 1.5rem;
  }
  .final-cta .contact-options a {
    font-size: 0.875rem;
    margin: 0 0.5rem;
    display: block;
    margin-bottom: 0.75rem;
  }
  .final-cta .contact-options a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .final-cta {
    padding: 4rem 0;
  }
  .final-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }
  .final-cta .final-cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
  .final-cta .cta-buttons {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .final-cta .contact-options {
    margin-top: 2rem;
  }
  .final-cta .contact-options a {
    font-size: 1rem;
    margin: 0 0.875rem;
  }
}

.contact-form-section {
  padding: 80px 0;
  background: white;
}
@media (max-width: 767px) {
  .contact-form-section {
    padding: 3rem 0;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .contact-form-section {
    padding: 4rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .section-subtitle {
  color: #87ceeb;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.section-header .section-title {
  font-size: 2.25rem;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  .section-header .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .section-header .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
  .section-header .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.625rem;
  }
  .section-header .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

.page-header {
  background: linear-gradient(135deg, #87ceeb 0%, #0066ff 100%);
  color: white;
  padding-top: 47px;
  padding-bottom: 80px;
  margin-top: 47px;
  position: relative;
}
.page-header .page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-header .page-title {
  font-size: 2.625rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.page-header .page-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-header {
    padding: 3rem 0;
    margin-top: 4rem;
  }
  .page-header .page-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .page-header .page-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .page-header {
    padding: 4rem 0;
  }
  .page-header .page-title {
    font-size: 2.25rem;
  }
  .page-header .page-subtitle {
    font-size: 1.125rem;
  }
}

.page-main {
  padding: 80px 0;
  background: white;
}
.page-main .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .page-main .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.page-main .page-content-wrapper {
  max-width: none;
}
.page-main .page-content-inner {
  color: #333;
  line-height: 1.8;
}
.page-main .page-content-inner h1,
.page-main .page-content-inner h2,
.page-main .page-content-inner h3,
.page-main .page-content-inner h4,
.page-main .page-content-inner h5,
.page-main .page-content-inner h6 {
  color: #333;
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.3;
}
.page-main .page-content-inner h1:first-child,
.page-main .page-content-inner h2:first-child,
.page-main .page-content-inner h3:first-child,
.page-main .page-content-inner h4:first-child,
.page-main .page-content-inner h5:first-child,
.page-main .page-content-inner h6:first-child {
  margin-top: 0;
}
.page-main .page-content-inner h1 {
  font-size: 2.25rem;
  color: #0066ff;
  border-bottom: 3px solid #87ceeb;
  padding-bottom: 0.5em;
}
.page-main .page-content-inner h2 {
  font-size: 1.5rem;
  color: #0066ff;
  position: relative;
  padding-left: 1em;
}
.page-main .page-content-inner h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  border-radius: 2px;
}
.page-main .page-content-inner h3 {
  font-size: 1.25rem;
  color: #333;
  background: #f8f9fa;
  padding: 0.8em 1em;
  border-left: 4px solid #87ceeb;
  margin-left: -1em;
  margin-right: -1em;
}
.page-main .page-content-inner h4 {
  font-size: 1.125rem;
  color: #333;
}
.page-main .page-content-inner h5,
.page-main .page-content-inner h6 {
  font-size: 1rem;
  color: #333;
}
.page-main .page-content-inner p {
  margin-bottom: 1.5em;
  font-size: 1rem;
}
.page-main .page-content-inner ul,
.page-main .page-content-inner ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}
.page-main .page-content-inner ul li,
.page-main .page-content-inner ol li {
  margin-bottom: 0.5em;
  line-height: 1.8;
}
.page-main .page-content-inner ul li {
  position: relative;
}
.page-main .page-content-inner ul li::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #87ceeb;
  border-radius: 50%;
}
.page-main .page-content-inner blockquote {
  background: #f8f9fa;
  border-left: 4px solid #87ceeb;
  padding: 1.5em;
  margin: 2em 0;
  font-style: italic;
  color: #666;
}
.page-main .page-content-inner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 1em 0;
}
.page-main .page-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.875rem;
}
.page-main .page-content-inner table th,
.page-main .page-content-inner table td {
  padding: 1em;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.page-main .page-content-inner table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #333;
}
.page-main .page-content-inner table tr:nth-child(even) {
  background: rgba(135, 206, 235, 0.05);
}
.page-main .page-content-inner a {
  color: #0066ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.page-main .page-content-inner a:hover {
  color: #0066ff;
  border-bottom-color: #87ceeb;
}
.page-main .page-content-inner code {
  background: #f8f9fa;
  padding: 0.2em 0.4em;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.page-main .page-content-inner pre {
  background: #f8f9fa;
  padding: 1.5em;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.page-main .page-content-inner pre code {
  background: none;
  padding: 0;
}
.page-main .page-links {
  text-align: center;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #e0e0e0;
}
.page-main .page-links .page-links-title {
  font-weight: 700;
  margin-right: 1em;
  color: #666;
}
.page-main .page-links a,
.page-main .page-links span {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.page-main .page-links a:hover,
.page-main .page-links span:hover {
  background: #87ceeb;
  color: white;
  border-color: #87ceeb;
}
.page-main .page-links .current {
  background: #0066ff;
  color: white;
  border-color: #0066ff;
}
.page-main .no-content {
  text-align: center;
  padding: 3em 0;
}
.page-main .no-content h2 {
  color: #333;
  margin-bottom: 1em;
}
.page-main .no-content p {
  color: #666;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .page-main {
    padding: 3rem 0;
  }
  .page-main .page-content-inner h1 {
    font-size: 1.5rem;
  }
  .page-main .page-content-inner h2 {
    font-size: 1.25rem;
    padding-left: 0.75em;
  }
  .page-main .page-content-inner h2::before {
    width: 3px;
    height: 1em;
  }
  .page-main .page-content-inner h3 {
    font-size: 1.125rem;
    padding: 0.6em 0.75em;
    margin-left: 0;
    margin-right: 0;
  }
  .page-main .page-content-inner ul,
  .page-main .page-content-inner ol {
    padding-left: 1.5em;
  }
  .page-main .page-content-inner blockquote {
    padding: 1em;
    margin: 1.5em 0;
  }
  .page-main .page-content-inner table {
    font-size: 0.8rem;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  .page-main .page-content-inner table th,
  .page-main .page-content-inner table td {
    padding: 0.75em 0.5em;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .page-main .page-content-inner h1 {
    font-size: 1.75rem;
  }
  .page-main .page-content-inner h2 {
    font-size: 1.5rem;
  }
  .page-main .page-content-inner h3 {
    font-size: 1.25rem;
  }
}

.page-sidebar .widget {
  background: #f8f9fa;
  padding: 1.5em;
  border-radius: 10px;
  margin-bottom: 2em;
}
.page-sidebar .widget .widget-title {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #87ceeb;
}
.page-sidebar .widget ul {
  list-style: none;
  padding: 0;
}
.page-sidebar .widget ul li {
  padding: 0.5em 0;
  border-bottom: 1px solid #e0e0e0;
}
.page-sidebar .widget ul li:last-child {
  border-bottom: none;
}
.page-sidebar .widget ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.page-sidebar .widget ul li a:hover {
  color: #0066ff;
}
@media (max-width: 1023px) {
  .page-sidebar {
    margin-top: 2rem;
  }
}

.page-cta {
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  color: white;
  padding: 60px 0;
}
.page-cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.page-cta .cta-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: 700;
}
.page-cta .cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2em;
  opacity: 0.95;
}
.page-cta .cta-content .cta-buttons {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .page-cta {
    padding: 3rem 0;
  }
  .page-cta .cta-content {
    padding: 0 1rem;
  }
  .page-cta .cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75em;
  }
  .page-cta .cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5em;
  }
  .page-cta .cta-content .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .page-cta .cta-content .cta-buttons a {
    min-width: 15rem;
    width: 100%;
    max-width: 20rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .page-cta .cta-content h2 {
    font-size: 1.75rem;
  }
  .page-cta .cta-content p {
    font-size: 1.125rem;
  }
}

.post-header {
  background: linear-gradient(135deg, #87ceeb 0%, #0066ff 100%);
  color: white;
  padding-top: 47px;
  padding-bottom: 80px;
  margin-top: 47px;
  position: relative;
}
.post-header .post-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.post-header .post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.95;
}
.post-header .post-meta .post-date {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5em 1em;
  border-radius: 5px;
}
.post-header .post-meta .post-categories a {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.post-header .post-meta .post-categories a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.post-header .post-title {
  font-size: 2.625rem;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .post-header {
    padding: 3rem 0;
    margin-top: 4rem;
  }
  .post-header .post-meta {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .post-header .post-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .post-header {
    padding: 4rem 0;
  }
  .post-header .post-title {
    font-size: 2.25rem;
  }
}

.post-main {
  padding: 80px 0;
  background: white;
}
.post-main .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .post-main .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.post-main .post-content-wrapper {
  max-width: none;
}
.post-main .post-content-inner {
  color: #333;
  line-height: 1.8;
}
.post-main .post-thumbnail {
  margin-bottom: 2rem;
  text-align: center;
}
.post-main .post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.post-main .post-body h1,
.post-main .post-body h2,
.post-main .post-body h3,
.post-main .post-body h4,
.post-main .post-body h5,
.post-main .post-body h6 {
  color: #333;
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.3;
}
.post-main .post-body h1:first-child,
.post-main .post-body h2:first-child,
.post-main .post-body h3:first-child,
.post-main .post-body h4:first-child,
.post-main .post-body h5:first-child,
.post-main .post-body h6:first-child {
  margin-top: 0;
}
.post-main .post-body h1 {
  font-size: 2.25rem;
  color: #0066ff;
  border-bottom: 3px solid #87ceeb;
  padding-bottom: 0.5em;
}
.post-main .post-body h2 {
  font-size: 1.5rem;
  color: #0066ff;
  position: relative;
  padding-left: 1em;
}
.post-main .post-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.2em;
  background: linear-gradient(135deg, #87ceeb, #0066ff);
  border-radius: 2px;
}
.post-main .post-body h3 {
  font-size: 1.25rem;
  color: #333;
  background: #f8f9fa;
  padding: 0.8em 1em;
  border-left: 4px solid #87ceeb;
  margin-left: -1em;
  margin-right: -1em;
}
.post-main .post-body h4 {
  font-size: 1.125rem;
  color: #333;
}
.post-main .post-body h5,
.post-main .post-body h6 {
  font-size: 1rem;
  color: #333;
}
.post-main .post-body p {
  margin-bottom: 1.5em;
  font-size: 1rem;
}
.post-main .post-body ul,
.post-main .post-body ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}
.post-main .post-body ul li,
.post-main .post-body ol li {
  margin-bottom: 0.5em;
  line-height: 1.8;
}
.post-main .post-body ul li {
  position: relative;
}
.post-main .post-body ul li::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #87ceeb;
  border-radius: 50%;
}
.post-main .post-body blockquote {
  background: #f8f9fa;
  border-left: 4px solid #87ceeb;
  padding: 1.5em;
  margin: 2em 0;
  font-style: italic;
  color: #666;
}
.post-main .post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 1em 0;
}
.post-main .post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.875rem;
}
.post-main .post-body table th,
.post-main .post-body table td {
  padding: 1em;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.post-main .post-body table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #333;
}
.post-main .post-body table tr:nth-child(even) {
  background: rgba(135, 206, 235, 0.05);
}
.post-main .post-body a {
  color: #0066ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.post-main .post-body a:hover {
  color: #0066ff;
  border-bottom-color: #87ceeb;
}
.post-main .post-body code {
  background: #f8f9fa;
  padding: 0.2em 0.4em;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.post-main .post-body pre {
  background: #f8f9fa;
  padding: 1.5em;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.post-main .post-body pre code {
  background: none;
  padding: 0;
}
@media (max-width: 767px) {
  .post-main .post-body h1 {
    font-size: 1.5rem;
  }
  .post-main .post-body h2 {
    font-size: 1.25rem;
    padding-left: 0.75em;
  }
  .post-main .post-body h2::before {
    width: 3px;
    height: 1em;
  }
  .post-main .post-body h3 {
    font-size: 1.125rem;
    padding: 0.6em 0.75em;
    margin-left: 0;
    margin-right: 0;
  }
  .post-main .post-body ul,
  .post-main .post-body ol {
    padding-left: 1.5em;
  }
  .post-main .post-body blockquote {
    padding: 1em;
    margin: 1.5em 0;
  }
  .post-main .post-body table {
    font-size: 0.8rem;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  .post-main .post-body table th,
  .post-main .post-body table td {
    padding: 0.75em 0.5em;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .post-main .post-body h1 {
    font-size: 1.75rem;
  }
  .post-main .post-body h2 {
    font-size: 1.5rem;
  }
  .post-main .post-body h3 {
    font-size: 1.25rem;
  }
}
.post-main .post-tags {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}
.post-main .post-tags h4 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 700;
}
.post-main .post-tags .tag-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.post-main .post-tags .tag-list li {
  margin: 0;
}
.post-main .post-tags .tag-list li a {
  display: inline-block;
  background: #f8f9fa;
  color: #333;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s;
  border-bottom: none;
}
.post-main .post-tags .tag-list li a:hover {
  background: #87ceeb;
  color: white;
}
.post-main .page-links {
  text-align: center;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #e0e0e0;
}
.post-main .page-links .page-links-title {
  font-weight: 700;
  margin-right: 1em;
  color: #666;
}
.post-main .page-links a,
.post-main .page-links span {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0 0.25em;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.post-main .page-links a:hover,
.post-main .page-links span:hover {
  background: #87ceeb;
  color: white;
  border-color: #87ceeb;
}
.post-main .page-links .current {
  background: #0066ff;
  color: white;
  border-color: #0066ff;
}
.post-main .no-content {
  text-align: center;
  padding: 3em 0;
}
.post-main .no-content h2 {
  color: #333;
  margin-bottom: 1em;
}
.post-main .no-content p {
  color: #666;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .post-main {
    padding: 3rem 0;
  }
  .post-main .post-thumbnail {
    margin-bottom: 1.5rem;
  }
  .post-main .post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .post-main .post-tags .tag-list {
    gap: 0.25rem;
  }
  .post-main .post-tags .tag-list li a {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
  }
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: none;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: #87ceeb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.post-navigation .nav-previous a {
  text-align: left;
}
.post-navigation .nav-next a {
  text-align: right;
}
@media (max-width: 767px) {
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .post-navigation .nav-previous a,
  .post-navigation .nav-next a {
    padding: 1rem;
    text-align: center;
  }
}

.post-sidebar .widget {
  background: #f8f9fa;
  padding: 1.5em;
  border-radius: 10px;
  margin-bottom: 2em;
}
.post-sidebar .widget .widget-title {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #87ceeb;
}
.post-sidebar .widget ul {
  list-style: none;
  padding: 0;
}
.post-sidebar .widget ul li {
  padding: 0.5em 0;
  border-bottom: 1px solid #e0e0e0;
}
.post-sidebar .widget ul li:last-child {
  border-bottom: none;
}
.post-sidebar .widget ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.post-sidebar .widget ul li a:hover {
  color: #0066ff;
}
@media (max-width: 1023px) {
  .post-sidebar {
    margin-top: 2rem;
  }
}

/*# sourceMappingURL=compiled.css.map */
