@charset "UTF-8";
section#contact {
  background-color: #F4F7F9;
}

.lower section {
  margin: 0;
}

.privacy-lower .contact-wrapper {
  background-color: #F4F7F9;
  padding: 3rem;
  max-width: 90%;
  margin: 6rem auto;
  font-family: sans-serif;
  width: 90%;
}

.chapter {
  margin: 50px 0px;
  text-align: left;
}

h2.blog-detail__title {
  text-align: center;
  margin-bottom: 45px;
  font-size: 2.5rem;
  color: #434548;
}

.contact-wrapper {
  background: white;
  padding: 6rem;
  max-width: 90%;
  margin: auto;
  font-family: sans-serif;
  width: 90%;
}

.contact-wrapper h2 {
  text-align: center;
  font-size: 1.8rem;
}

.contact-wrapper .subtitle {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}

.label-inner {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}

.label-inner:last-child {
  margin-bottom: 0;
}

.inline-label label,
.label-inner label {
  margin: 0;
  white-space: nowrap;
}

.form-group input,
.form-group textarea,
.form-group select {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
}

.badge {
  background: #004080;
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 3px;
  display: inline-block;
  margin-right: 10px;
}

.badge.gray {
  background: #999;
  color: white;
}

.privacy span.note {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
}

.label-inner-l {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  width: auto !important;
}

.label-p {
  width: 100% !important;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: auto;
  height: auto;
  position: relative;
  top: 2px;
  margin-right: 3px;
  width: 23px !important;
  height: 23px !important;
}

input[type=checkbox].checkbox-error {
  outline: 1.4px solid #d00 !important;
  outline-offset: -1.5px;
}

/* チェックが入った時のスタイル */
input[type=checkbox]:checked {
  background-color: #004080;
  /* 背景色を変更 */
  border-color: #004080;
  /* 枠線の色を変更 */
}

/* 5. チェックマークをCSSで作成 */
input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 15px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: translate(-50%, -60%) rotate(45deg);
}

/* エラー時のスタイル */
input[type=checkbox].is-invalid {
  border-color: #d00 !important;
  /* 枠線の色だけを変更 */
}

.form-group input.wpcf7-not-valid,
.form-group textarea.wpcf7-not-valid,
.form-group select.wpcf7-not-valid {
  border: 1px solid #d00 !important;
}

.form-submit {
  text-align: center;
}

.form-submit input[type=submit] {
  background: white;
  border: 2px solid black;
  padding: 0.5rem 3rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  font-size: 1.5rem;
  color: #000;
  width: 75%;
}

.form-submit input[type=submit]:hover {
  background: black;
  color: #fff;
}

.screen-reader-response {
  display: none;
}

span.wpcf7-not-valid-tip {
  color: #ff0000;
}

.wpcf7-response-output {
  text-align: center;
  margin-top: 1rem;
  color: #d00;
  position: relative;
  bottom: 100px;
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
}

.wpcf7 form .form-submit {
  order: 0;
}

a.privacy-link {
  color: #004080;
}
a.privacy-link:hover {
  opacity: 0.5;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
  border: 1.3px solid #d00 !important;
  /* 赤い枠線 */
}

/* エラーメッセージの文字スタイル */
.error-message {
  color: #d00;
  /* 赤文字 */
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.contact-inner.text-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    padding: 3rem;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .section-subtitle {
    margin: 0 auto 60px;
  }
  .features:first-child {
    margin-top: 0;
  }
  .contact-wrapper {
    padding: 1.5rem;
  }
  .badge {
    margin: 0;
  }
  .label-inner-l {
    width: auto !important;
  }
  .form-submit input[type=submit] {
    font-size: 1.1rem;
    width: 70%;
  }
  .privacy-lower .contact-wrapper {
    padding: 2rem;
    max-width: 98%;
    margin: 6rem auto;
    font-family: sans-serif;
    width: 98%;
  }
  input[type=checkbox] {
    width: 17px !important;
    height: 17px !important;
  }
}
.header {
  background-color: #ffffff;
  position: fixed;
  z-index: 1001;
  width: 100%;
  top: 0;
  height: 70px;
  background-color: transparent !important;
  min-height: 70px;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.white {
  background-color: #ffffff !important;
  transition: background-color 0.4s ease;
}

.logo {
  width: 200px;
  height: 100%;
  position: relative;
  z-index: 10000;
}

.logo a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  height: 100% !important;
  width: 100%;
  display: flex;
  align-items: center;
}
.logo a img {
  vertical-align: middle;
}

/* ナビゲーションメニュー (デフォルトはデスクトップ表示用) */
.nav-menu {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-menu ul li {
  margin-left: 30px;
  color: #4e4e4e;
}

.nav-menu ul li a {
  color: #4e4e4e;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
  font-weight: bold;
}

.nav-menu ul li a:hover {
  color: #000000;
}

.nav-item {
  position: relative;
}
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -15px;
  background: white;
  border: 1px solid #ccc;
  padding: 0.5rem;
  z-index: 10;
  text-align: center;
}
.nav-item .dropdown li {
  margin: 5px 0;
  font-size: 0.9rem;
}
.nav-item .dropdown a {
  white-space: nowrap;
  color: #4e4e4e;
  text-decoration: none;
  font-size: 0.9rem;
}
.nav-item:hover .dropdown {
  display: block;
}

/* モバイル用メニュー（初期状態は非表示） */
@media (max-width: 1024px) {
  .nav-menu {
    overflow: hidden;
    height: 100vh;
    /* 全画面表示に設定 */
    flex-direction: column;
    background-color: #ffffff;
    /* 背景を少し透かしてインパクトを持たせる */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    text-align: center;
    max-height: 0;
    /* 初期は非表示 */
    transition: max-height 0.4s ease-in-out;
    z-index: 999;
    /* メニューを最前面に */
  }
  .nav-menu ul {
    flex-direction: column;
    height: 100%;
    margin-top: 120px;
  }
  .nav-menu ul li {
    margin: 20px 0;
  }
  .nav-menu ul li a {
    font-size: 1.5em;
    /* 全画面メニュー用に大きめの文字サイズ */
    color: rgb(0, 0, 0);
  }
  .nav-menu.active {
    max-height: 100vh;
    /* メニューが開いた状態で全画面表示 */
  }
}
/* ハンバーガーメニュー (デスクトップでは非表示、モバイルでは表示) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background-color: #4e4e4e;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* レスポンシブデザイン - モバイルでハンバーガーメニューを表示 */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .nav-menu ul {
    padding: 0;
  }
}
@media screen and (max-width: 450px) {
  header {
    padding: 10px;
  }
}
/* Reset & Basic Styles */
:root {
  --primary-color: #0d47a1;
  /* 濃いブルー */
  --secondary-color: #1976d2;
  /* 中間のブルー */
  --accent-color: #42a5f5;
  /* 明るいブルー */
  --text-color: #333;
  --light-bg-color: #f4f7f9;
  --white-color: #ffffff;
  --font-family: "Noto Sans JP", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.8;
}

section {
  margin: 100px 0px;
}

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

img {
  width: 100%;
  height: auto;
}

/* Hero Section */
#hero {
  background-position: center;
  height: 50vh;
  min-height: 400px;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
  /* text-align: center; */
  color: var(--white-color);
  margin-top: 70px;
  /* mask-image: url(/files/user/assets/images/business/business_top_mask.svg); */
  position: relative;
  margin-top: 0;
}
#hero::before {
  width: 100%;
  content: "";
  background-color: white;
  position: absolute;
  height: 100%;
  z-index: 124;
  bottom: 0;
  left: 0px;
  transform: translate3d(0, 0, 0);
  background: url(http://lagroup2025.xsrv.jp/wp-content/themes/LA%20GROUP/assets/images/03b35471-79b9-4112-8a70-3e6d6457a53d-x4.png) no-repeat center center/cover;
}

.hero-content {
  position: relative;
  z-index: 1000;
  height: auto;
  top: 35%;
  left: 10%;
}

.hero-content h1 {
  font-size: 90px;
  font-weight: 900;
  line-height: 1.2;
  transform: skewX(-12deg);
  font-feature-settings: "palt";
  margin-bottom: 20px;
  background: linear-gradient(135deg, #001c7b 0%, #005ac8 60%, #00a7e1 100%);
  color: transparent;
  /* 3. 背景をテキストの形に切り抜く（これが核心部分） */
  -webkit-background-clip: text;
  /* Safari/Chrome用のプレフィックス */
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1e88e5;
  /* 少し濃いアクセントカラー */
}

/* Content Sections */
.content-section {
  padding: 120px 0;
}

.bg-light {
  background-color: var(--light-bg-color);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.section-title span {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: -12px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

/* --- Company Profile Section --- */
/* --- Company Section (New Design) --- */
/* --- Company Section (フルブリード対応デザイン) --- */
.company-section {
  position: relative;
  /* 疑似要素を配置するための基準となります */
  padding: 20px 0;
  /* セクション全体の上下の余白 */
  margin: 150px 0;
  margin-bottom: 200px;
}

/* 画面左端から伸びる青い背景を疑似要素で作成します */
.company-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  /* コンテンツより後ろに配置 */
  background-color: #0D47A1;
  /* 
   * ここがポイントです:
   * 背景の幅を「サイトの左側の余白」+「テキストカラムの幅」に設定します。
   * calc()を使って、サイトのコンテンツ幅(max-width)に合わせて動的に計算します。
   * (100vw - 1400px) / 2 は、画面幅からコンテンツ幅を引いた残りの半分（＝左の余白）です。
   * 840pxは、1400pxのコンテナ内の60%分です (1400 * 0.6)。
  */
  width: calc((100vw - 1400px) / 2 + 950px);
}

/* コンテンツ全体をまとめるラッパー */
.company-section__wrapper {
  /* サイトのコンテンツ幅と中央寄せ */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  padding-left: 85px;
  /* スマホ表示時の左右の余白 */
  /* コンテンツを疑似要素の上に表示させる */
  position: relative;
  z-index: 2;
  /* Gridレイアウトで左右のカラムを作成 */
  display: grid;
  /* 左(テキスト)が60%、右(画像)が40%の比率 */
  grid-template-columns: 60fr 55fr;
  align-items: center;
  /* 要素の縦方向を中央揃えに */
  gap: 60px;
  /* カラム間の隙間 */
}

/* 左カラム: テキストエリア */
.company-section__text-content {
  color: #ffffff;
  /* 文字色を白に */
  padding: 25px 0;
  /* テキストエリア内の上下の余白 */
  overflow: hidden;
}

.company-section__text-inner {
  /* この要素はスタイリングの調整用です */
}

h2.company-section__headline {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* 背景の大きな透かし文字 */
.company-section__text-content::before {
  content: "SMILE";
  /* 表示する文字 */
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  /* 文字サイズ */
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  z-index: 1;
  pointer-events: none;
  /* クリックなどを透過させる */
  font-family: "Poppins", sans-serif;
}

/* }

.company-section__headline {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 35px;
}

.company-section__body p {
    font-size: 0.95rem;
    line-height: 2;
    margin-bottom: 1.8em;
}

.company-section__body p:last-child {
    margin-bottom: 0;
}

/* 右カラム: 画像エリア */
.company-section__image-content {
  /* 画像がテキストエリアに少し重なるように見せるための調整 */
  transform: translateX(30px);
  z-index: 100;
}

.company-section__image-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

/* --- Responsive for Company Section --- */
/* サイトの最大幅より画面が狭い場合の背景調整 */
@media (max-width: 1400px) {
  .company-section::before {
    /* 左の余白(padding) + テキストカラムの幅(60%) で計算 */
    width: calc(20px + 75%);
  }
}
@media (max-width: 1200px) {
  .company-section::before {
    width: calc(20px + 80%);
  }
  .company-section__wrapper {
    padding-left: 40px;
    grid-template-columns: 100fr 73fr;
    gap: 0px;
  }
  .company-section__image-content {
    transform: translateX(15px);
  }
}
/* タブレットサイズ */
@media (max-width: 992px) {
  .company-section__text-content {
    order: 2;
  }
  .company-section {
    padding: 60px 0;
    /* 上下の余白を調整 */
  }
  .company-section__wrapper {
    /* 1カラムにして縦に並べる */
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .company-section__text-content {
    padding-bottom: 0;
  }
  .company-section::before {
    /* 画面全体を青い背景にする */
    width: 100%;
  }
  .company-section__image-content {
    transform: translateX(0);
    /* 重なりをリセット */
    padding: 0 30px;
    /* 画像の左右に余白を追加 */
  }
  .company-section__text-content::before {
    left: 50%;
    font-size: 15rem;
  }
}
/* スマートフォンサイズ */
@media (max-width: 576px) {
  .company-section__wrapper {
    overflow: hidden;
  }
  .company-section {
    padding: 60px 0;
  }
  .company-section__headline {
    font-size: 1.8rem;
  }
  .company-section__image-content {
    padding: 0;
  }
}
/* Business Section - Features */
section#business {
  position: relative;
}
section#business::before {
  content: "";
  display: block;
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 7vw;
  background: url(http://lagroup2025.xsrv.jp/wp-content/themes/LA%20GROUP/assets/images/wave-t.png) no-repeat center center/cover;
}
section#business::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 7vw;
  background: url(http://lagroup2025.xsrv.jp/wp-content/themes/LA%20GROUP/assets/images/wave-b.png) no-repeat center center/cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--accent-color);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.feature-num {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 15px;
  font-weight: 700;
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.support-icon {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.support-item h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.profit-structure {
  background: var(--light-bg-color);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 60px;
}

.profit-structure h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.profit-flex {
  display: flex;
  gap: 40px;
}

.profit-example,
.profit-model {
  flex: 1;
  background: var(--white-color);
  padding: 25px;
  border-radius: 8px;
}

.profit-example h4,
.profit-model h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

.profit-example p span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.profit-example hr {
  margin: 15px 0;
  border: none;
  border-top: 1px dashed #ccc;
}

section#cost {
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
}
section#cost::after {
  content: "";
  position: absolute;
  right: -300px;
  bottom: -300px;
  left: -300px;
  z-index: -1;
  height: 760px;
  background-color: #0D47A1;
  clip-path: ellipse(50% 25% at 50% 50%);
}

/* Cost Section */
.cost-info h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.cost-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.cost-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 45%;
  text-align: center;
}

.cost-card.initial-cost {
  border-top: 5px solid var(--secondary-color);
}

.cost-card.monthly-cost {
  border-top: 5px solid var(--accent-color);
}

.cost-card h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
}

.cost-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.cost-card .price span {
  font-size: 1.5rem;
}

.cost-card .price small {
  font-size: 1rem;
  font-weight: normal;
}

.cost-card ul {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
  font-size: 1.2rem;
}

.cost-card li {
  margin-bottom: 10px;
}

.cost-card li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

.cost-note {
  font-size: 0.9rem;
  color: #666;
}

/* Contact Section */
section#contact {
  margin-bottom: 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: var(--font-family);
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
  color: #666;
}

input#name {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 20px 0;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Features Section --- */
.features {
  margin-top: 80px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.feature-item {
  text-align: center;
}

.feature-item__icon-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #0d47a1;
}
.feature-item__icon-wrapper img {
  width: 100px;
}

.feature-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 20px;
}

.feature-item__text {
  font-size: 0.9rem;
  color: var(--color-text);
  text-align: left;
  line-height: 1.8;
}

#features {
  margin-top: 0;
}

@media (min-width: 769px) {
  .tb {
    display: none;
  }
}
/* --- Responsive Adjustments for Features --- */
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 576px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-item__icon-wrapper {
    width: 140px;
    height: 140px;
  }
  .feature-item__title {
    font-size: 1.3rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  section {
    margin: 30px 0;
  }
  .section-title span {
    font-size: 1.2rem;
  }
  .content-section {
    padding: 100px 0;
  }
  .company-section {
    margin-top: 0;
    margin-bottom: 130px;
  }
  .header .container {
    position: relative;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .header-nav.active {
    display: block;
  }
  .header-nav ul {
    flex-direction: column;
  }
  .header-nav ul li {
    margin: 0;
    text-align: center;
    border-bottom: 1px solid var(--light-bg-color);
  }
  .header-nav a {
    display: block;
    padding: 15px;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
  }
  .menu-button span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  section#hero {
    margin-bottom: 0;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .company-section {
    margin-top: 0;
    margin-bottom: 130px !important;
  }
  .company-flex,
  .profit-flex,
  .cost-flex {
    flex-direction: column;
  }
  section#support {
    padding: 100px 0;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .cost-card {
    width: 100%;
  }
  section#business::before {
    height: 5vw;
    top: -24px;
  }
  section#business::after {
    bottom: -24px;
    height: 5vw;
  }
}
@media (max-width: 450px) {
  #hero {
    height: 58vh;
    min-height: 425px;
  }
  .section-title span {
    font-size: 1rem;
    margin-bottom: -8px;
  }
  .hero-content {
    top: 46%;
    left: 4%;
  }
  .hero-content h1 {
    font-size: 2.7rem;
    padding-bottom: 10px;
  }
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
  h2.company-section__headline {
    font-size: 1.7rem;
  }
  section#business::before {
    top: -18px;
  }
  section#business::after {
    bottom: -18px;
  }
  .features__grid {
    gap: 50px;
  }
  .feature-item__title {
    margin-bottom: 10px;
  }
  section#support {
    padding: 60px 0;
  }
  .content-section {
    padding: 80px 0;
  }
  .company-section {
    margin-bottom: 100px !important;
  }
  .feature-item__icon-wrapper {
    margin: 0 auto 15px;
  }
}/*# sourceMappingURL=main.css.map */