/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #161c2d;
  background-color: #fdfdff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgb(0, 15, 53);/*追加*/
}
.wrap/*thanks用*/{
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop {
    display: block;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

@media (min-width: 640px) {
  .header-content {
    height: 70px;
  }
  .header-container {
    padding: 0 20px;
  }
}

/*.logo img {
  width: 50%;
}*/

/*.logo h1 {
  font-size: 18px;
  font-weight: 700;
  color: #161c2d;
}

@media (min-width: 640px) {
  .logo h1 {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .logo h1 {
    font-size: 24px;
  }
}*/

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1280px) {
  .nav-desktop ul {
    gap: 32px;
  }
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #161c2d;
  transition: color 0.3s;
}

@media (min-width: 1280px) {
  .nav-link {
    font-size: 18px;
  }
}

.nav-link:hover {
  color: #473bf0;
}

/* Header Button */
.btn-header {
  display: none;
  font-size: 16px;
  padding: 8px 18px;
}

@media (min-width: 1024px) {
  .btn-header {
    display: inline-block;
  }
}

@media (min-width: 1280px) {
  .btn-header {
    font-size: 18px;
    padding: 14px 24px;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: none;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-line {
  width: 20px;
  height: 2px;
  background-color: #161c2d;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .menu-line {
    width: 24px;
  }
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #e5e7eb;
  transition: all 0.3s;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 50;
}

@media (min-width: 640px) {
  .nav-mobile {
    top: 70px;
  }
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
}

.nav-link-mobile {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  font-weight: 500;
  color: #161c2d;
  transition: all 0.3s;
}

.nav-link-mobile:hover {
  color: #473bf0;
  background-color: #f4f7fa;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background-image: url('images/net-blue.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 0 auto;/*足した*/
}

@media (min-width: 640px) {
  .hero {
    /*padding-top: 140px;*/
    /*min-width: 1000px;*/
    background-image: url('images/net-blue.png');
  }
  /*.hero-subtitle{
    display: none;
  }
  .hero-title{
    display: none ;
  }*/
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
/*@media (min-width: 640px) {
  .hero::before {
  background-color: rgba(0, 0, 0, 0);
  }
}*/
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  text-align: left;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: center;
  }
}

.hero-subtitle {
  color: #ffe74a;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 45px;
  }
}
.hero-campaign{
   /*background-image: linear-gradient(95deg, #ffffff, #ffd900 0%, #fff4b9 20%, #fffdf2 50%, #fff7cc 80%, #ffd900);*/
   background-image: radial-gradient(#ffffff, #fffdf2 24%, #fff7cc 69%, #ffdf27);
   max-width: 700px;
   border-radius: 10px;
   margin: 0 auto;
   padding: 20px;
   box-shadow: #161c2d 0px 10px 40px;
   text-align: center;

}
@media (min-width: 640px) {
.hero-campaign-box{
  display: flex;
  justify-content: center;
  align-items: center;
}
}
@media (min-width: 640px) {
  .hero-campaign{
    /*margin-top: 300px;*/
    text-align: center;
  }
}
.hero-campaign-box p{
  display: inline-block;
  text-align: left;
}
.hero-campaign-title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-campaign-description {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.hero-campaign img{
  margin: 10px 20px;
}
.campaign-point{
  color: #e01515;
  font-size: 23px;
}

.btn-hero, .btn-camp {
  font-size: 18px;
  padding: 18px 32px;
}

/* Button Styles */
.btn-primary {
  /*background-color: #14b8a6;*/
  background-color: #e01515;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s;
  text-align: left;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  background-color: #c01717;
  transform: translateY(-2px);
}
.btn-hero {
  margin-top: 15px;
  background-color: #14b8a6;
}
.btn-hero:hover {
  transform: translateY(-2px);
  background-color: #09a391;
}
.form-buttons .btn-primary {
  text-align: center;
  font-size: 18px;
}
.form-buttons .btn-secondary {
  text-align: center;
  font-size: 18px;
}
.form-buttons{
  padding-bottom: 30px;
}


.btn-secondary {
  background-color: transparent;
  color: #161c2d;
  font-weight: 600;
  padding: 14px 24px;
  border: 1px solid #e7e9ed;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #f4f7fa;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f4f7fa;
}

.section-header {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-header {
    text-align: center;
  }
}
.section-subtitle {
  color: #e01515;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #161c2d;
  max-width: 800px;
  margin: 0 auto 15px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.section-description {
  font-size: 18px;
  color: rgba(22, 28, 45, 0.7);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  /*color: white;*/
  background-color: #ffffff;
  border: 3px solid #14b8a6;
}

@media (min-width: 1024px) {
  .service-card {
    padding: 24px;
  }
}

/*.service-card-green {
  background-color: #68d585;
}

.service-card-blue {
  background-color: #473bf0;
  box-shadow: 0 32px 54px rgba(22, 28, 45, 0.16);
}

.service-card-red {
  background-color: #e01515;
}

.service-card-dark {
  background-color: #161c2d;
}*/

.service-icon {
 /*width: 100px;
  height: 100px;*/
  margin: 0 auto 24px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

@media (min-width: 1024px) {
  .service-card h3 {
    font-size: 23px;
  }
}

.service-card p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.4;
  text-align: left;
}

@media (min-width: 768px) {
  .service-card p {
    font-size: 18px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .service-card p {
    font-size: 18px;
    text-align: left;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 90px;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .pricing-grid {
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  padding: 32px;
  border-radius: 18px;
  border: 2px solid;
}

.pricing-before {
  background-color: #ffffff;
  border-color: #e7e9ed;
}

.pricing-after {
  background-color: #fff4bc;
  /*background-image: linear-gradient(0deg, #ffdf27, #fffbe6 0%, #fffbe8 26%, #fff7cc 50%, #ffe870);*/
  /*border: solid 4px #14b8a6;*/
  border: none;
  /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
  position: relative;
  margin-top: 80px;
}
@media (min-width: 1024px) {
   .pricing-after {
    margin-top: 0px;
  }
}

/*
.pricing-campaign-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #14b8a6;
  color: white;
  padding: 8px 24px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}*/
.pricing-campaign-badge {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
   /*background-color:#fff4bc;
  border-radius: 40px;
 padding: 10px 25px 0 25px;*/
  /*color: white;
  padding: 8px 24px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;*/
}
@media (min-width: 768px) {
  .pricing-campaign-badge {
    top: -55px;
  }
}
.pricing-campaign-badge img{
  max-width:none ;
}
.pricing-campaign-badge.pc img{
  display: none;
}
@media (min-width: 768px) {
  .pricing-campaign-badge img{
  max-width:none ;
  }
  .pricing-campaign-badge.mobile img{
    display: none;
  }
  .pricing-campaign-badge.pc img{
    display: block;
  }
}

/*.pricing-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 14px;
}*/
.pricing-badge {
  display: block;
  text-align: center;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 14px;
}

/*.pricing-before .pricing-badge {
  background-color: #161c2d;
  color: white;
}
.pricing-badge-special {
  background-color: rgba(255, 255, 255, 0.8);
  color: #e01515;
}
*/
.pricing-before .pricing-badge {
  border-top: solid 1px #434a5b;
  border-bottom: solid 1px #434a5b;
}
.pricing-badge-special {
  border-top: solid 1px #e01515;
  border-bottom: solid 1px #e01515;
  color: #e01515;
}

.pricing-original {
  text-align: center;
  margin-bottom: 8px;
}

.original-price {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: line-through;
}

.pricing-amount {
  text-align: center;
  margin-bottom: 24px;
}

.amount {
  font-size: 48px;
  font-weight: 700;
}

.currency {
  font-size: 18px;
  margin-left: 4px;
}

.pricing-before .amount,
.pricing-before .currency {
  color: #161c2d;
}

.pricing-after .amount,
.pricing-after .currency {
  color:#e01515;
}

.pricing-savings {
  /*background-color: #e01515;*/
  /*background-color: #14b8a6;*/
  /*background-image: linear-gradient(95deg, #ffdf27, #fffbe6 20%, #fffbe8 50%, #fff7cc 80%, #ffdf27);*/
  background-color: rgba(255, 255, 255, 0.8);
  color: #e01515;
  padding: 15px 18px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
  /*border: solid 1px #e01515;*/
}

.pricing-note {
  /*background-color: rgba(255, 255, 255, 0.6);*/
  color: black;
  font-size: 16px;
  /*padding: 4px 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;*/
  display: inline-block;
  /*margin-bottom: 10px;*/
  text-align: center;
  width: 100%;
}
.pricing-caution {
  font-size: 14px;
}

@media (min-width: 768px) {
  .pricing-caution {
    /*text-align: center;*/
  }
}
.pricing-breakdown {
  margin-top: 24px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.breakdown-item span{
  padding: 3px;
}
.pricing-before .breakdown-item {
  border-color: #e7e9ed;
}

.breakdown-price {
  font-weight: 600;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  margin-top: 18px;
  border-radius: 8px;
  font-weight: 600;
}

.pricing-before .breakdown-total {
  background-color: rgba(22, 28, 45, 0.05);
}

.pricing-after .breakdown-total {
  background-color: rgba(255, 255, 255, 0.6);
}

.total-price {
  font-size: 20px;
  font-weight: 700;
}

.pricing-arrow {
  position: absolute;
  width: 64px;
  height: 64px;
  /*background-color:#a9a9a9;*/
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  border: 2px solid #e01515;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.pricing-arrow svg {
  width: 32px;
  height: 32px;
}

.pricing-arrow-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .pricing-arrow-desktop {
    display: flex;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.pricing-arrow-mobile {
  display: flex;
  left: 50%;
  top: calc(50% - 90px);
  transform: translateX(-50%);
}

@media (min-width: 1024px) {
  .pricing-arrow-mobile {
    display: none;
  }
}

.campaign-notice {
  background: linear-gradient(135deg, rgba(104, 213, 133, 0.1), rgba(104, 213, 133, 0.05));
  border: 1px solid #68d585;
  border-radius: 14px;
  padding: 24px;
  max-width: 1024px;
  margin: 40px auto 0;
  text-align: center;
}

@media (min-width: 768px) {
  .campaign-notice {
    padding: 32px;
  }
}

.campaign-notice h3 {
  font-size: 18px;
  font-weight: 700;
  color: #161c2d;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .campaign-notice h3 {
    font-size: 20px;
  }
}

.campaign-notice p {
  color: rgba(22, 28, 45, 0.7);
  margin-bottom: 8px;
}

.campaign-notice .highlight {
  font-weight: 700;
  color: #e01515;
}

.notice-small {
  font-size: 16px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .notice-small {
    font-size: 16px;
  }
}

/* Campaign Section */
.campaign {
  padding: 80px 0;
  background-color: #f4f7fa;
}

.campaign-content {
  background-color: white;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 32px;
  max-width: 1024px;
  margin: 0 auto;
  /*text-align: center;*/
}

@media (min-width: 768px) {
  .campaign-content {
    padding: 48px;
    text-align: center
  }
}

.campaign-badge-large {
  background-color: #e01515;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  /*display: inline-block;*/
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .campaign-badge-large {
    text-align: center;
  }
}

.campaign-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #161c2d;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .campaign-subtitle {
    font-size: 28px;
  }
}

.campaign {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
  /*margin-top: 40px;
  margin-bottom: 40px;*/
}
.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
}
@media (min-width: 768px) {
    .campaign-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (min-width: 1024px) {
    .campaign-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.campaign-item {
  /*display: flex;
  align-items: flex-start;*/
  gap: 18px;
  padding: 24px;
  background-color: #f4f7fa;
  border-radius: 14px;
  margin-bottom: 24px;
  text-align: center;
}
.campaign-item-note{
  font-size: 14px;
}
/*@media (min-width: 1024px) {
    .campaign-item {
      text-align: center;
    }
    .campaign-item p{
      text-align: left;
    }
}*/

/*
.condition-icon {
  width: 32px;
  height: 32px;
  background-color: #14b8a6;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
*/
.condition-icon svg {
  width: 20px;
  height: 20px;
}

.campaign-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #161c2d;
  margin-bottom: 8px;
  display: inline-block;
  text-align: left;
}
/*@media (min-width: 768px) {
    .campaign-item h4 {
      text-align: center;
    }
}*/
@media (min-width: 768px) {
  .campaign-item h4 {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .campaign-item h4 {
    text-align: center;
  }
}
.campaign-item p {
  color: rgba(22, 28, 45, 0.7);
  text-align: left;
  display: inline-block;
}
.campaign-item img {
  text-align: center;
  margin: 0 auto;
}/*
@media (min-width: 768px) {
  .campaign-item p{
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .campaign-item p{
    text-align: left;
  }
}*/
.campaign-cta {
  text-align: center;
}

/* Flow Section */
.flow {
  padding: 80px 0;
  background-color: white;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  position: relative;
  text-align: center;
  background-color:#f4f7fa;
  border-radius: 15px;
  padding: 24px;
}
/*.br-flow-step {
  display: none;
}
@media (min-width: 1024px) {
  .br-flow-step {
    display: block;
  }
}*/

.flow-number {
  width: 64px;
  height: 64px;
  background-color: #14b8a6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 10;
}

.flow-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  /*text-align: center;*/
}

.flow-step p {
  display: inline-block;
  font-size: 16px;
  color: rgba(22, 28, 45, 0.7);
  line-height: 1.6;
  text-align: left;
}/*
@media (min-width: 768px) {
  .flow-step p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .flow-step p {
    text-align: left;
  }
}*/
.flow-day {
  margin-top: 15px;
  text-align: center;
}
.flow-arrow {
  color: #14b8a6;
  margin-top: 24px;
}

.flow-arrow svg {
  width: 24px;
  height: 24px;
}

.flow-arrow-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .flow-arrow-desktop {
    display: block;
    position: absolute;
    top: 70px;
    right: -26px;
  }
}

.flow-arrow-mobile {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .flow-arrow-mobile {
    display: none;
  }
}

.flow-step:last-child .flow-arrow {
  display: none;
}

.flow-warning {
  background-color: #ffed8f;
  /*border-left: 4px solid #e01515;*/
  border-radius: 8px;
  padding: 24px;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.warning-icon {
  /*width: 24px;
  height: 24px;
  background-color: #e01515;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;*/
}

.warning-icon svg {
  width: 18px;
  height: 18px;
}

.flow-warning h4 {
  font-weight: 700;
  color: #e01515;
  margin-bottom: 8px;
  font-size: 18px;
}

.flow-warning p {
  color: rgba(22, 28, 45, 0.8);
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: #f4f7fa;
}
.faq-controls{
  margin-bottom: 15px;
}
.faq-list {
  max-width: 1024px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  text-align: left;
  background: none;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.faq-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-blue {
  background-color: rgba(71, 59, 240, 0.1);
}

.faq-icon-red {
  background-color: rgba(246, 75, 75, 0.1);
}

.faq-icon-green {
  background-color: rgba(104, 213, 133, 0.1);
}

.faq-icon-dark {
  background-color: rgba(22, 28, 45, 0.1);
}

.faq-icon svg {
  width: 24px;
  height: 24px;
}

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: #161c2d;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 5000px;
}

.faq-answer .faq-answer-content {
  padding: 0 32px 24px;
  color: rgba(22, 28, 45, 0.7);
  line-height: 1.6;
}
.faq-answer p {
  margin-bottom: 1em;
  margin-top: 1em;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

@media (min-width: 768px) {
  .final-cta {
    text-align: center;
  }
}

.final-cta h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .final-cta h2 {
    font-size: 28px;
  }
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.final-cta .btn-primary {
  font-size: 28px;
}
@media (min-width: 768px) {
  .final-cta .btn-primary {
    padding: 10px 100px;
  }
}
/* Footer */
.footer {
  padding: 40px 0;
  background-color: #1f3575;
  color: white;
  text-align: center;
}

.footer h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-address {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
}

.modal-content {
  position: relative;
  z-index: 102;
  background-color: white;
  border-radius: 14px;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
}

.modal-header {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  margin-bottom: 8px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #161c2d;
}

.modal-close {
  width: 32px;
  height: 32px;
  font-size: 28px;
  line-height: 1;
  color: #161c2d;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #e01515;
}

.modal-description {
  /*text-align: center;*/
  color: rgba(22, 28, 45, 0.7);
  margin-bottom: 24px;
}

/* Contact Form */
.form_apply {
  margin-bottom: 32px;
}

.form-group {
  padding-bottom: 30px;
  /*border-top: dashed 1px #aeaeae;*/
}
.form-group:last-child{
  border-top: none;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #161c2d;
  margin-bottom: 8px;
  background-color: #ececec;
  padding: 5px 10px;
  border-radius: 6px;
}

.required {
  color: white;
  background-color: #e01515;
  font-weight: bold;
  font-size:14px;
  padding: 1px 5px;
  display: inline-block;
  margin: 0 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e7e9ed;
  border-radius: 8px;
  font-size: 18px;
  font-family: inherit;
  transition: border-color 0.3s;
  margin-bottom: 3px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #14b8a6;
}

.form-group textarea {
  resize: none;
}

.form-buttons {
  display: flex;
  gap: 14px;
}

.form-buttons button {
  flex: 1;
}
input.input-border-none{
  border:none;
}
.alert-warning{
  color: #e01515;
  font-size: 16px;
}
.alert-danger{
  color: #e01515;
  font-size: 20px;
  margin-bottom: 20px;
}
/* Contact Phone */
.contact-phone {
  padding-top: 24px;
  border-top: 1px solid #e7e9ed;
}
@media (min-width: 768px) {
  .contact-phone {
    text-align: center;
  }
}

.contact-phone h3 {
  font-size: 18px;
  font-weight: 700;
  color: #161c2d;
  margin-bottom: 18px;
}

.phone-info {
  background-color: #f4f7fa;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}

.phone-number {
  font-size: 24px;
  font-weight: 700;
  color: #14b8a6;
  margin-bottom: 4px;
}

.phone-hours {
  font-size: 16px;
  color: rgba(22, 28, 45, 0.7);
}

.phone-note {
  font-size: 16px;
  color: rgba(22, 28, 45, 0.7);
}

/* Thanks Section */
.thanks {
  padding: 150px 0;
  background-color: #f4f7fa;
}
.thanks p{

}
.support{
  max-width:600px;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.support-list{
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 350px;
  margin: 30px auto;
  text-align: left;
}