/* ========================================
   廃油回収業者サイト - スタイルシート
   ======================================== */

:root {
  --color-green: #5a9f4d;
  --color-green-dark: #2d4a35;
  --color-beige: #eae4d1;
  --color-beige-dark: #dcd4bc;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-decorative: 'Quicksand', sans-serif;
  --shadow: 0 4px 20px rgba(45, 74, 53, 0.1);
  --radius: 8px;
  --max-width: 1100px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-green);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

/* ---- 共通レイアウト ---- */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--beige {
  background-color: var(--color-white);
}

.section--white {
  background-color: var(--color-white);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 48px;
  font-size: 0.95rem;
}

/* ---- ボタン ---- */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-main);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  text-align: center;
}

.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn--primary:hover {
  background-color: var(--color-white);
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn--primary.btn--invert {
  border-color: var(--color-green);
}

.btn--arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn__icon {
  flex-shrink: 0;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.btn--arrow:hover .btn__arrow {
  transform: translateX(8px);
}

/* ---- ヘッダー ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-green-dark);
}

.logo__icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.nav__list {
  display: flex;
  gap: 20px;
}

.nav__link {
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 500;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-green);
}

/* 全ページ：ロゴ・ヘッダーメニューを上からスライドイン */
.logo {
  opacity: 0;
  transform: translateY(-30%);
  animation: header-nav-slide-in 0.5s ease-out 0.2s forwards;
}

@media (min-width: 769px) {
  .nav__list {
    opacity: 0;
    transform: translateY(-30%);
    animation: header-nav-slide-in 0.5s ease-out 0.2s forwards;
  }
}

@keyframes header-nav-slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .nav__list,
  .menu-toggle,
  .page-home .hero__catch,
  .page-home .hero__sub,
  .page-home .hero__content .btn,
  .page-hero--decorated::before,
  .page-hero--decorated h1,
  .page-hero--decorated p {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .page-hero--decorated::before {
    transform: translateX(-50%);
  }
}


/* ハンバーガーメニュー */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-green-dark);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- ファーストビュー ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 20px 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 74, 53, 0.75) 0%,
    rgba(74, 124, 89, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--color-white);
}

/* 初回表示：キャッチ→サブ・ボタンを順にスライドイン */
.page-home .hero__catch {
  opacity: 0;
  transform: translateY(30%);
  animation: hero-content-slide-in 0.8s ease-out 0.5s forwards;
}

.page-home .hero__sub {
  opacity: 0;
  transform: translateY(30%);
  animation: hero-sub-slide-in 0.8s ease-out 0.8s forwards;
}

.page-home .hero__content .btn {
  opacity: 0;
  transform: translateY(30%);
  animation: hero-content-slide-in 0.8s ease-out 0.9s forwards;
}

@keyframes hero-content-slide-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-sub-slide-in {
  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

.hero__catch {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 36px;
  opacity: 0.95;
}

/* ---- 選ばれる理由 ---- */

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

.reason-item {
  background-color: var(--color-beige);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.reason-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}

.reason-item__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---- サービス内容 ---- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-beige);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card__title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: var(--color-green);
  border-radius: 2px;
  flex-shrink: 0;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-overview .service-image {
  margin-bottom: 0;
}

.service-overview .service-image img {
  height: 100%;
  min-height: 260px;
}

.service-summary {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.service-summary p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.9;
}

.service-intro {
  max-width: 750px;
  margin: 0 auto;
}

.service-overview .service-intro {
  max-width: none;
  margin: 0;
}

.service-intro p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.9;
}

.service-intro p + p {
  margin-top: 16px;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 16px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.detail-list li + li {
  margin-top: 6px;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background-color: var(--color-green);
  border-radius: 50%;
}

.service-card .detail-list {
  margin-top: 4px;
}

.detail-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.detail-note--center {
  text-align: center;
  margin-top: 24px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.tag-item {
  background-color: var(--color-beige);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--color-green-dark);
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* ---- 回収の流れ ---- */

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}

.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background-color: var(--color-beige-dark);
}

.flow-item__number {
  width: 48px;
  height: 48px;
  background-color: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.flow-item__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 6px;
}

.flow-item__content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ---- 料金 ---- */

.price-content {
  width: fit-content;
  max-width: 750px;
  margin: 0 auto;
}

.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.price-table {
  width: fit-content;
  max-width: 100%;
  border-collapse: collapse;
  background-color: var(--color-beige);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
  padding: 20px 28px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-beige-dark);
  text-align: left;
  vertical-align: middle;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}

.price-table th {
  background-color: var(--color-beige-dark);
  font-weight: 500;
  color: var(--color-green-dark);
  white-space: nowrap;
  width: 1%;
}

.price-table td {
  color: var(--color-text-light);
}

.price-note {
  width: 100%;
  max-width: 750px;
  box-sizing: border-box;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 24px auto 0;
}

.price-note strong {
  color: var(--color-green-dark);
  background: linear-gradient(transparent 35%, #fff176 35%, #fff176 85%, transparent 85%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 2px;
}

/* ---- FAQ ---- */

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--color-beige);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid var(--color-beige-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-beige-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-green-dark);
  cursor: pointer;
  position: relative;
  line-height: 1.6;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-green);
  transition: transform 0.3s;
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

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

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-right: 20px;
}

/* ---- 会社情報 ---- */

.company-table-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  background-color: var(--color-white);
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--color-text);
}

.company-table tr:last-child {
  border-bottom: none;
}

.company-table th,
.company-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
  text-align: left;
}

.company-table th {
  width: 130px;
  font-weight: 500;
  color: var(--color-green-dark);
  white-space: nowrap;
  vertical-align: middle;
}

.company-table td {
  color: var(--color-text-light);
  vertical-align: top;
  padding-left: 40px;
}

/* ---- CTA バナー ---- */

.cta-banner {
  background-color: var(--color-white);
  padding: 60px 20px;
  text-align: center;
  color: var(--color-text);
}

.cta-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.cta-banner p {
  margin-bottom: 28px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ---- フッター ---- */

.footer {
  background-color: var(--color-green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 20px;
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ---- お問い合わせページ ---- */

.page-hero {
  background-color: var(--color-green);
  padding: calc(var(--header-height) + 50px) 20px 50px;
  text-align: center;
  color: var(--color-white);
}

.page-hero h1 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.page-hero--decorated {
  position: relative;
  background-color: transparent;
  color: var(--color-text);
  overflow: hidden;
}

.page-hero--decorated::before {
  position: absolute;
  top: calc(var(--header-height) + 10px);
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 30%);
  font-family: var(--font-decorative);
  font-size: clamp(3.6rem, 14vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgba(45, 74, 53, 0.08);
  white-space: nowrap;
  pointer-events: none;
  animation: page-hero-bg-slide-in 0.8s ease-out 0.55s forwards;
}

.page-hero--service.page-hero--decorated::before {
  content: 'SERVICE';
}

.page-hero--contact.page-hero--decorated::before {
  content: 'CONTACT';
}

.page-hero--decorated h1 {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30%);
  animation: hero-content-slide-in 0.8s ease-out 0.4s forwards;
}

.page-hero--decorated p {
  position: relative;
  z-index: 1;
  color: var(--color-text-light);
  opacity: 0;
  transform: translateY(30%);
  animation: hero-sub-slide-in 0.8s ease-out 0.7s forwards;
}

@keyframes page-hero-bg-slide-in {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.contact-section {
  padding: 60px 0 80px;
}

.contact-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-intro p + p {
  margin-top: 12px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: stretch;
}

.contact-main {
  display: flex;
  flex-direction: column;
}

/* フォーム */

.contact-form {
  background-color: var(--color-beige);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group:has(textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-group:has(textarea) textarea {
  flex: 1;
  min-height: 140px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}

.form-group label .optional {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 400;
  margin-left: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-green);
  background-color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.form-group.is-error input,
.form-group.is-error textarea {
  border-color: #c0392b;
}

.form-group.is-error .form-error {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* 送信完了メッセージ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background-color: var(--color-beige);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-white);
  font-size: 1.8rem;
}

.form-success h2 {
  font-size: 1.3rem;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* 電話情報サイドバー */

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact-phone-card,
.contact-info-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-phone-card {
  background-color: var(--color-beige);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-phone-card h3 {
  font-size: 0.95rem;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}

.contact-phone-card a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 8px;
}

.contact-phone-card__link--email {
  font-size: 1.1rem;
  word-break: break-all;
}

.contact-phone-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.contact-info-card {
  background-color: var(--color-beige);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact-info-card h3 {
  font-size: 0.95rem;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}

.contact-info-card p + p {
  margin-top: 6px;
}

/* ---- レスポンシブ ---- */

@media (max-width: 900px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-overview {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: -1;
    height: auto;
  }

  .contact-phone-card,
  .contact-info-card {
    flex: none;
  }

  .contact-form {
    display: block;
  }

  .contact-form .form-group:has(textarea) {
    display: block;
  }

  .contact-form .form-group:has(textarea) textarea {
    flex: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .menu-toggle {
    display: flex;
    opacity: 0;
    transform: translateY(-30%);
    animation: header-nav-slide-in 0.5s ease-out 0.2s forwards;
  }

  .nav__list {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-beige-dark);
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .company-table th {
    width: 100px;
    font-size: 0.85rem;
  }
}
