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

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}
.logo-link:hover {
  text-decoration: none;
  color: inherit;
}

.alert {
  padding: 1rem;
  margin: 0;
  border-radius: 0;
  text-align: center;
  font-weight: bold;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: slideDown 0.3s ease-out;
}
.alert.alert-success {
  background: #d4edda;
  color: #155724;
  border-bottom: 2px solid #c3e6cb;
}
.alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-bottom: 2px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header {
  background: #2c3e50;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 998;
  transition: top 0.3s ease;
}
@media (max-width: 1064px) {
  .header {
    position: fixed;
  }
}
.header .header-top {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .header-top .header-top-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 5fr 5fr;
  justify-content: space-between;
  text-align: center;
  position: relative;
  gap: 0.5rem;
}
.header .header-top .header-top-content .logo-section {
  width: 100%;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.header .header-top .header-top-content .logo-section .logo {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.header .header-top .header-top-content .logo-section .mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-top .header-top-content .logo-section .mobile-menu-toggle:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.05);
}
.header .header-top .header-top-content .logo-section .mobile-menu-toggle:active {
  transform: scale(0.95);
}
@media (max-width: 1064px) {
  .header .header-top .header-top-content .logo-section .mobile-menu-toggle {
    display: flex;
  }
}
.header .header-top .header-top-content .phone-section {
  width: 100%;
  order: 2;
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 1rem;
  align-items: center;
}
.header .header-top .header-top-content .phone-section .phone-info .phone-button {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.header .header-top .header-top-content .phone-section .phone-info .phone-button:hover {
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}
@media (max-width: 768px) {
  .header .header-top .header-top-content .phone-section .phone-info .phone-button {
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
  }
}
.header .header-top .header-top-content .phone-section .phone-info .phone-hours {
  font-size: 1rem;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .header .header-top .header-top-content .phone-section .phone-info .phone-hours {
    font-size: 0.85rem;
  }
}
.header .header-top .header-top-content .phone-section .toggle-area {
  display: flex;
  justify-content: flex-end;
}
.header .navbar .navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header .navbar .navbar-content .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  gap: 2rem;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 1200px) {
  .header .navbar .navbar-content .nav-menu {
    gap: 1.5rem;
  }
}
@media (max-width: 1064px) {
  .header .navbar .navbar-content .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
}
.header .navbar .navbar-content .nav-menu .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header .navbar .navbar-content .nav-menu .nav-item .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
  }
}
.header .navbar .navbar-content .nav-menu .nav-item .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 1064px) {
  .header .navbar {
    padding: 0;
  }
  .header .navbar .navbar-content {
    position: relative;
  }
  .header .navbar .navbar-content .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    gap: 0;
    z-index: 10000;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease, visibility 0.5s;
  }
  .header .navbar .navbar-content .nav-menu.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .navbar .navbar-content .nav-menu .nav-item {
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
  }
  .header .navbar .navbar-content .nav-menu .nav-item:last-child {
    border-bottom: none;
  }
  .header .navbar .navbar-content .nav-menu .nav-item .nav-link {
    padding: 1rem;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .header .navbar .navbar-content .nav-menu .nav-item .nav-link:hover {
    background-color: #f8f9fa;
  }
}
@media (max-width: 1064px) {
  .header .header-top {
    padding: 1rem 0;
  }
  .header .header-top .header-top-content {
    display: block;
  }
  .header .header-top .header-top-content .logo-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 1rem;
  }
  .header .header-top .header-top-content .logo-section .logo {
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 900;
    text-align: center;
    grid-column: 2;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  .header .header-top .header-top-content .logo-section .mobile-menu-toggle {
    display: flex !important;
    grid-column: 3;
    justify-self: end;
  }
  .header .header-top .header-top-content .phone-section {
    display: block;
  }
  .header .header-top .header-top-content .phone-section .phone-info {
    text-align: center;
  }
}
.main-content {
  min-height: calc(100vh - 200px);
  padding: 0;
}
.main-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer {
  background: #2c3e50;
  color: white;
  padding: 2rem 0;
  margin-top: auto;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.footer .footer-links {
  margin-bottom: 1rem;
}
.footer .footer-links .footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.footer .footer-links .footer-link:hover {
  color: white;
  text-decoration: underline;
}
.footer p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (min-width: 769px) {
  .main-content {
    padding: 0;
  }
}
.line-float-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #06C755;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.5);
  z-index: 9999;
  transition: all 0.3s ease;
}
.line-float-button:hover {
  background: #05B04B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.6);
}
.line-float-button .line-button-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.line-float-button svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.line-float-button .line-text {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .line-float-button {
    bottom: 100px;
    right: 15px;
    padding: 10px 12px;
    border-radius: 30px;
  }
  .line-float-button .line-button-content {
    flex-direction: column;
    gap: 4px;
  }
  .line-float-button svg {
    width: 28px;
    height: 28px;
  }
  .line-float-button .line-text {
    font-size: 0.75rem;
    line-height: 1;
  }
}

body:has(.alert) .header {
  top: 60px;
}

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

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  color: #333;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: #2c3e50;
  padding: 0.5rem 0;
  border-bottom: 1px solid #34495e;
}

.header-top-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-info {
  text-align: right;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff9800;
  display: block;
}

.phone-hours {
  font-size: 0.9rem;
  color: #bdc3c7;
}

.navbar {
  background: #1e3c72;
  padding: 1rem 0;
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
  }
}
.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
}

.hero {
  background: url("/images/kobe_yakei.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 0;
  padding-top: 125px;
  position: relative;
}
@media (max-width: 1064px) {
  .hero {
    padding-top: 0;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: #ff5722;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.services {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1e3c72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3c72;
}

.price-section {
  background: white;
  padding: 4rem 0;
}

.price-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 800px;
}

.price-header {
  background: #1e3c72;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.price-header-combined {
  display: flex;
  background: #1e3c72;
  color: white;
  font-weight: bold;
}
.price-header-combined .price-header-left,
.price-header-combined .price-header-right {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  background: #2a5298;
}
.price-header-combined .price-header-center {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  background: #1e3c72;
}

.price-row-combined {
  display: flex;
  border-bottom: 1px solid #eee;
}
.price-row-combined:last-child {
  border-bottom: none;
}
.price-row-combined .price-amount-left,
.price-row-combined .price-amount-right {
  flex: 1;
  padding: 1rem;
  text-align: center;
  color: #ff5722;
  font-weight: bold;
  background: #f8f9fa;
}
.price-row-combined .price-distance-center {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  background: white;
}

.price-row {
  display: flex;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

.price-distance {
  flex: 1;
  font-weight: bold;
}

.price-amount {
  flex: 1;
  text-align: right;
  color: #ff5722;
  font-weight: bold;
}

.faq-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: #1e3c72;
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #2a5298;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 1.5rem;
  background: white;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.contact {
  background: #1e3c72;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffeb3b;
}

.contact-phone-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  margin: 1rem 0;
}

.contact-phone-button:hover {
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0;
  }
  .header-top-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .navbar-content {
    position: relative;
  }
  .navbar-content .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    gap: 0;
    z-index: 10000;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .navbar-content .nav-menu.active {
    display: flex;
    visibility: visible;
    opacity: 1;
    max-height: 500px;
  }
  .navbar-content .nav-menu .nav-item {
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
  }
  .navbar-content .nav-menu .nav-item:last-child {
    border-bottom: none;
  }
  .navbar-content .nav-menu .nav-link {
    padding: 1rem;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
    color: #333;
    text-decoration: none;
  }
  .nav-item {
    border-bottom: 1px solid #eee;
  }
  .nav-link {
    padding: 1rem;
    border-radius: 0;
  }
  .hero {
    background-attachment: scroll;
    margin-top: 0;
  }
  body:has(.alert) .hero {
    padding-top: 240px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
}
#pricing,
#usage,
#faq,
#contact,
#company,
#recruitment {
  scroll-margin-top: 200px;
  /* ヘッダー高さ分 */
}

.r ecruitment-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  color: white;
}

.recruitment-content {
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #333;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.job-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0;
}

.job-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.job-details {
  display: grid;
  gap: 1.5rem;
}

.job-detail-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-detail-item h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.job-detail-item h4::before {
  content: "▶";
  color: #667eea;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.job-description p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.salary {
  font-size: 1.3rem;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 0.5rem;
}

.salary-note {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

.work-time {
  font-size: 1.1rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.requirements {
  font-weight: bold;
  color: #8e44ad;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.job-apply {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

.apply-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 500;
}

.apply-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phone-btn {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
}

.phone-btn:hover {
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.web-btn {
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  color: white;
}

.web-btn:hover {
  background: linear-gradient(45deg, #44a08d, #4ecdc4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(68, 160, 141, 0.4);
}

@media (max-width: 768px) {
  .job-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  .job-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .apply-buttons {
    flex-direction: column;
    align-items: center;
  }
  .apply-btn {
    width: 100%;
    max-width: 300px;
  }
}
.company-i nfo-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-title {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 1.5rem;
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.info-content {
  padding: 2rem;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #e0e0e0;
  align-items: start;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: bold;
  color: #2c3e50;
  font-size: 0.95rem;
}

.info-value {
  color: #555;
  line-height: 1.6;
}

.phone-link {
  color: #ff5722;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #e64a19;
  text-decoration: underline;
}

.certification-badge {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.badge-icon {
  background: white;
  color: #27ae60;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.badge-text {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .info-label {
    font-size: 0.9rem;
  }
  .info-value {
    font-size: 0.95rem;
  }
  .certification-badge {
    flex-direction: column;
    text-align: center;
  }
  .badge-text {
    font-size: 1rem;
  }
}
.company -info-section {
  background: #f8f9fa;
  padding: 4rem 0;
  margin-bottom: 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-title {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 1.5rem;
  margin: 0;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.info-content {
  padding: 2rem;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #e0e0e0;
  align-items: start;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: bold;
  color: #2c3e50;
  font-size: 0.95rem;
}

.info-value {
  color: #555;
  line-height: 1.6;
}

.phone-link {
  color: #ff5722;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #e64a19;
  text-decoration: underline;
}

.certification-badge {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.badge-icon {
  background: white;
  color: #27ae60;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.badge-text {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .info-label {
    font-size: 0.9rem;
  }
  .info-value {
    font-size: 0.95rem;
  }
  .certification-badge {
    flex-direction: column;
    text-align: center;
  }
  .badge-text {
    font-size: 1rem;
  }
}
.company-info-section {
  background: #f8f9fa;
  padding: 4rem 0;
  margin-bottom: 50px;
}

.info-subtitle {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 1.2rem;
  margin: 0;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
}

.line-discount-banner {
  max-width: 800px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #06C755 0%, #05B04B 100%);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.5);
  }
}
.line-discount-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.line-discount-icon {
  background: white;
  border-radius: 50%;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.line-discount-icon svg {
  width: 45px;
  height: 45px;
}

.line-discount-text {
  flex: 1;
  min-width: 200px;
  color: white;
  text-align: center;
}
.line-discount-text h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
  font-weight: bold;
}
.line-discount-text .line-discount-price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.2rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.line-discount-text p {
  margin: 0.3rem 0 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

.line-discount-button {
  background: white;
  color: #06C755;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.line-discount-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .line-discount-banner {
    padding: 1.2rem 1rem;
    margin: 1.5rem 1rem;
  }
  .line-discount-content {
    flex-direction: column;
    gap: 1rem;
  }
  .line-discount-icon {
    padding: 0.5rem;
  }
  .line-discount-icon svg {
    width: 40px;
    height: 40px;
  }
  .line-discount-text h3 {
    font-size: 0.85rem;
  }
  .line-discount-text .line-discount-price {
    font-size: 1.5rem;
  }
  .line-discount-text p {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .line-discount-button {
    width: 100%;
    max-width: 250px;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.insurance-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.insurance-content {
  max-width: 900px;
  margin: 0 auto;
}

.insurance-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.insurance-header {
  background: #2c3e50;
  color: white;
  padding: 1.5rem;
  text-align: center;
}
.insurance-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.insurance-body {
  padding: 2rem;
  background: white;
}

.insurance-intro {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.8;
}
.insurance-intro strong {
  color: #2c3e50;
}

.insurance-description {
  background: #f8f9fa;
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
  border-left: 4px solid #1e3c72;
  line-height: 1.8;
  font-size: 1rem;
  color: #555;
}
.insurance-description strong {
  color: #1e3c72;
}

.insurance-coverage {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}
.insurance-coverage h4 {
  text-align: center;
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e0e0e0;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.coverage-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.coverage-label {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.coverage-label::before {
  content: "✓";
  color: #27ae60;
  font-size: 1.1rem;
  margin-right: 0.6rem;
  font-weight: bold;
}

.coverage-value {
  font-size: 1.1rem;
  font-weight: bold;
  color: #e74c3c;
}

.insurance-notes {
  background: #fffbf0;
  padding: 1.2rem;
  border-radius: 6px;
  border-left: 4px solid #f39c12;
}

.note-item {
  margin: 0.6rem 0;
  color: #555;
  line-height: 1.7;
  font-size: 0.9rem;
}
.note-item:first-child {
  margin-top: 0;
}
.note-item:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #27ae60;
  font-size: 0.95rem;
}
.note-item.note-warning {
  color: #c0392b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .insurance-section {
    padding: 3rem 0;
  }
  .insurance-content {
    padding: 0 1rem;
  }
  .insurance-header {
    padding: 1.5rem;
  }
  .insurance-header h3 {
    font-size: 1.5rem;
  }
  .insurance-body {
    padding: 1.5rem;
  }
  .insurance-intro {
    font-size: 0.95rem;
  }
  .insurance-description {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .insurance-coverage {
    padding: 1.2rem;
  }
  .insurance-coverage h4 {
    font-size: 1.1rem;
  }
  .coverage-list li {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 0.9rem;
  }
  .coverage-label {
    font-size: 0.95rem;
    justify-content: center;
  }
  .coverage-value {
    font-size: 1rem;
  }
  .insurance-notes {
    padding: 1rem;
  }
  .note-item {
    font-size: 0.85rem;
  }
}
.inquiry-form-container,
.answer-form-container {
  max-width: 1000px;
  margin: 200px auto;
  padding: 2rem 20px;
}
.inquiry-form-container .form-header,
.answer-form-container .form-header {
  text-align: center;
  margin-bottom: 3rem;
}
.inquiry-form-container .form-header h2,
.answer-form-container .form-header h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.inquiry-form-container .form-header p,
.answer-form-container .form-header p {
  color: #666;
  font-size: 1rem;
}
.inquiry-form-container .inquiry-form,
.inquiry-form-container .answer-form,
.answer-form-container .inquiry-form,
.answer-form-container .answer-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.inquiry-form-container .form-table,
.answer-form-container .form-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.inquiry-form-container .form-table tbody,
.answer-form-container .form-table tbody {
  font-size: 12px;
}
.inquiry-form-container .form-table .form-row,
.answer-form-container .form-table .form-row {
  border-bottom: 1px solid #e0e0e0;
}
.inquiry-form-container .form-table .form-row:last-child,
.answer-form-container .form-table .form-row:last-child {
  border-bottom: none;
}
.inquiry-form-container .form-table .form-row th.form-label,
.answer-form-container .form-table .form-row th.form-label {
  background: #87ceeb;
  color: white;
  padding: 1.5rem;
  width: 200px;
  text-align: left;
  vertical-align: top;
  font-weight: bold;
  position: relative;
}
.inquiry-form-container .form-table .form-row th.form-label.required .required-badge,
.answer-form-container .form-table .form-row th.form-label.required .required-badge {
  background: #e74c3c;
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}
.inquiry-form-container .form-table .form-row td.form-input,
.answer-form-container .form-table .form-row td.form-input {
  padding: 1.5rem;
  background: #f8f9fa;
  vertical-align: top;
}
.inquiry-form-container .form-table .form-row td.form-input input[type=text],
.inquiry-form-container .form-table .form-row td.form-input input[type=email],
.inquiry-form-container .form-table .form-row td.form-input input[type=tel],
.inquiry-form-container .form-table .form-row td.form-input textarea,
.answer-form-container .form-table .form-row td.form-input input[type=text],
.answer-form-container .form-table .form-row td.form-input input[type=email],
.answer-form-container .form-table .form-row td.form-input input[type=tel],
.answer-form-container .form-table .form-row td.form-input textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.inquiry-form-container .form-table .form-row td.form-input input[type=text]:focus,
.inquiry-form-container .form-table .form-row td.form-input input[type=email]:focus,
.inquiry-form-container .form-table .form-row td.form-input input[type=tel]:focus,
.inquiry-form-container .form-table .form-row td.form-input textarea:focus,
.answer-form-container .form-table .form-row td.form-input input[type=text]:focus,
.answer-form-container .form-table .form-row td.form-input input[type=email]:focus,
.answer-form-container .form-table .form-row td.form-input input[type=tel]:focus,
.answer-form-container .form-table .form-row td.form-input textarea:focus {
  outline: none;
  border-color: #87ceeb;
}
.inquiry-form-container .form-table .form-row td.form-input textarea,
.answer-form-container .form-table .form-row td.form-input textarea {
  resize: vertical;
  min-height: 100px;
}
.inquiry-form-container .form-table .form-row td.form-input .radio-group,
.answer-form-container .form-table .form-row td.form-input .radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.inquiry-form-container .form-table .form-row td.form-input .radio-group input[type=radio],
.answer-form-container .form-table .form-row td.form-input .radio-group input[type=radio] {
  margin-right: 0.5rem;
}
.inquiry-form-container .form-table .form-row td.form-input .radio-group label,
.answer-form-container .form-table .form-row td.form-input .radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.inquiry-form-container .form-table .form-row td.form-input .form-note,
.answer-form-container .form-table .form-row td.form-input .form-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .inquiry-form-container .form-table .form-row th.form-label,
  .inquiry-form-container .form-table .form-row td.form-input,
  .answer-form-container .form-table .form-row th.form-label,
  .answer-form-container .form-table .form-row td.form-input {
    display: block;
    width: 100%;
  }
  .inquiry-form-container .form-table .form-row th.form-label,
  .answer-form-container .form-table .form-row th.form-label {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
  .inquiry-form-container .form-table .form-row td.form-input,
  .answer-form-container .form-table .form-row td.form-input {
    padding-top: 0.5rem;
  }
}
.inquiry-form-container .form-submit,
.answer-form-container .form-submit {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
}
.inquiry-form-container .form-submit .submit-btn,
.answer-form-container .form-submit .submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.inquiry-form-container .form-submit .submit-btn:hover,
.answer-form-container .form-submit .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.inquiry-form-container .form-submit .button-group,
.answer-form-container .form-submit .button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .inquiry-form-container .form-submit .button-group,
  .answer-form-container .form-submit .button-group {
    flex-direction: column;
    gap: 1rem;
  }
}
.inquiry-form-container .form-submit .button-group .inline-form,
.answer-form-container .form-submit .button-group .inline-form {
  display: inline;
}
.inquiry-form-container .text-muted,
.answer-form-container .text-muted {
  color: #666;
  font-style: italic;
}
.inquiry-form-container .error-messages,
.answer-form-container .error-messages {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  border: 1px solid #f5c6cb;
}
.inquiry-form-container .error-messages h4,
.answer-form-container .error-messages h4 {
  margin-bottom: 0.5rem;
}
.inquiry-form-container .error-messages ul,
.answer-form-container .error-messages ul {
  margin: 0;
  padding-left: 1.5rem;
}

.inquiries-index,
.inquiry-detail {
  max-width: 1200px;
  margin: 250px auto;
  padding: 2rem 20px;
}
.inquiries-index .page-header,
.inquiry-detail .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}
.inquiries-index .page-header h1,
.inquiry-detail .page-header h1 {
  font-size: 2rem;
  color: #2c3e50;
}
.inquiries-index .page-header .header-actions,
.inquiry-detail .page-header .header-actions {
  display: flex;
  gap: 1rem;
}
.inquiries-index .inquiry-card,
.inquiry-detail .inquiry-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.inquiries-index .inquiry-card:hover,
.inquiry-detail .inquiry-card:hover {
  transform: translateY(-2px);
}
.inquiries-index .inquiry-card .inquiry-header,
.inquiry-detail .inquiry-card .inquiry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.inquiries-index .inquiry-card .inquiry-header h3,
.inquiry-detail .inquiry-card .inquiry-header h3 {
  margin: 0;
}
.inquiries-index .inquiry-card .inquiry-header h3 a,
.inquiry-detail .inquiry-card .inquiry-header h3 a {
  color: #2c3e50;
  text-decoration: none;
}
.inquiries-index .inquiry-card .inquiry-header h3 a:hover,
.inquiry-detail .inquiry-card .inquiry-header h3 a:hover {
  color: #667eea;
}
.inquiries-index .inquiry-card .inquiry-header .inquiry-meta,
.inquiry-detail .inquiry-card .inquiry-header .inquiry-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.inquiries-index .inquiry-card .inquiry-header .inquiry-meta .inquiry-type,
.inquiry-detail .inquiry-card .inquiry-header .inquiry-meta .inquiry-type {
  background: #87ceeb;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
}
.inquiries-index .inquiry-card .inquiry-header .inquiry-meta .inquiry-date,
.inquiry-detail .inquiry-card .inquiry-header .inquiry-meta .inquiry-date {
  font-size: 0.9rem;
  color: #666;
}
.inquiries-index .inquiry-card .inquiry-header .inquiry-meta .answer-status,
.inquiry-detail .inquiry-card .inquiry-header .inquiry-meta .answer-status {
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}
.inquiries-index .inquiry-card .inquiry-header .inquiry-meta .answer-status.answered,
.inquiry-detail .inquiry-card .inquiry-header .inquiry-meta .answer-status.answered {
  background: #d4edda;
  color: #155724;
}
.inquiries-index .inquiry-card .inquiry-header .inquiry-meta .answer-status.unanswered,
.inquiry-detail .inquiry-card .inquiry-header .inquiry-meta .answer-status.unanswered {
  background: #f8d7da;
  color: #721c24;
}
.inquiries-index .inquiry-card .inquiry-actions,
.inquiry-detail .inquiry-card .inquiry-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.inquiries-index .empty-state,
.inquiry-detail .empty-state {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inquiry-info .info-section,
.inquiry-info .content-section,
.inquiry-info .answers-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}
.inquiry-info .info-section h2,
.inquiry-info .content-section h2,
.inquiry-info .answers-section h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #87ceeb;
}
.inquiry-info .info-table .info-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}
.inquiry-info .info-table .info-row:last-child {
  border-bottom: none;
}
.inquiry-info .info-table .info-row .info-label {
  min-width: 150px;
  font-weight: bold;
  color: #2c3e50;
}
.inquiry-info .info-table .info-row .info-value {
  flex: 1;
  color: #666;
}
.inquiry-info .content-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #87ceeb;
}
.inquiry-info .answer-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #27ae60;
}
.inquiry-info .answer-box .answer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.inquiry-info .answer-box .answer-header .answer-admin {
  font-weight: bold;
  color: #27ae60;
}
.inquiry-info .answer-box .answer-header .answer-date {
  color: #666;
}
.inquiry-info .answer-box .answer-content {
  color: #2c3e50;
}

.inquiry-summary {
  margin-bottom: 2rem;
}
.inquiry-summary h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}
.inquiry-summary .summary-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}
.inquiry-summary .summary-box .summary-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.inquiry-summary .summary-box .summary-meta span {
  padding: 0.25rem 0.5rem;
  background: #f8f9fa;
  border-radius: 15px;
}
.inquiry-summary .summary-box .summary-content {
  color: #666;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover:before {
  left: 100%;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}
.btn.btn-outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}
.btn.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.admin-layout {
  background: #f8f9fa;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.admin-header {
  background: #343a40;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-header .admin-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.admin-header .admin-header-content h1 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
}
.admin-header .admin-nav {
  display: flex;
  gap: 2rem;
}
.admin-header .admin-nav .admin-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.admin-header .admin-nav .admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 200px);
}

.admin-footer {
  background: #6c757d;
  color: white;
  padding: 1rem 0;
  margin-top: auto;
}
.admin-footer .admin-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.dashboard h2 {
  margin-bottom: 2rem;
  color: #343a40;
}
.dashboard .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.dashboard .stat-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.dashboard .stat-card h3 {
  margin: 0 0 1rem 0;
  color: #6c757d;
  font-size: 1rem;
}
.dashboard .stat-card .stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin: 0.5rem 0;
}
.dashboard .stat-card .stat-number.unanswered {
  color: #dc3545;
}
.dashboard .stat-card .stat-number.answered {
  color: #28a745;
}
.dashboard .stat-card .stat-label {
  color: #6c757d;
  font-size: 0.9rem;
}
.dashboard .stat-card-large {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dashboard .stat-card-large h3 {
  margin: 0 0 1.5rem 0;
  color: #343a40;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}
.dashboard .stat-card-large .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.dashboard .stat-card-large .stat-item {
  text-align: center;
}
.dashboard .stat-card-large .stat-item .stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: #343a40;
}
.dashboard .stat-card-large .stat-item .stat-number.unanswered {
  color: #dc3545;
}
.dashboard .stat-card-large .stat-item .stat-number.answered {
  color: #28a745;
}
.dashboard .stat-card-large .stat-item .stat-label {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}
.dashboard .menu-section h3 {
  margin-bottom: 1rem;
  color: #343a40;
}
.dashboard .menu-section .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.dashboard .menu-section .menu-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.dashboard .menu-section .menu-card:hover {
  transform: translateY(-2px);
}
.dashboard .menu-section .menu-card .menu-link {
  display: block;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.dashboard .menu-section .menu-card .menu-link .menu-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.dashboard .menu-section .menu-card .menu-link h4 {
  margin: 0 0 0.5rem 0;
  color: #343a40;
}
.dashboard .menu-section .menu-card .menu-link p {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.inquiries-admin .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}
.inquiries-admin .page-header h2 {
  margin: 0;
  color: #343a40;
}
.inquiries-admin .inquiries-table-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow-x: scroll;
}
.inquiries-admin .inquiries-table {
  width: 100%;
  border-collapse: collapse;
}
.inquiries-admin .inquiries-table th, .inquiries-admin .inquiries-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.inquiries-admin .inquiries-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.inquiries-admin .inquiries-table tr.unanswered {
  background: #fff5f5;
}
.inquiries-admin .inquiries-table tr.answered {
  background: #f0fff4;
}
.inquiries-admin .inquiries-table tr:hover {
  background: #f8f9fa;
}
.inquiries-admin .inquiries-table .actions {
  white-space: nowrap;
}
.inquiries-admin .inquiries-table .actions .btn {
  margin-right: 0.5rem;
}
.inquiries-admin .status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.inquiries-admin .status-badge.unanswered {
  background: #f8d7da;
  color: #721c24;
}
.inquiries-admin .status-badge.answered {
  background: #d4edda;
  color: #155724;
}
.inquiries-admin .empty-state {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.inquiries-admin .pagination-info {
  margin-bottom: 1rem;
  color: #6c757d;
  font-size: 0.9rem;
}
.inquiries-admin .pagination-container {
  display: flex;
  justify-content: center;
}
.inquiries-admin .pagination-container .pagination {
  display: flex;
  list-style: none;
  margin: 30px 0;
  padding: 0;
  gap: 0.25rem;
}
.inquiries-admin .pagination-container .pagination .page a, .inquiries-admin .pagination-container .pagination .page span {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  border: 1px solid #dee2e6;
  color: #007bff;
  background: white;
  border-radius: 4px;
  transition: all 0.3s;
}
.inquiries-admin .pagination-container .pagination .page a:hover, .inquiries-admin .pagination-container .pagination .page span:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}
.inquiries-admin .pagination-container .pagination .page.current span {
  background: #007bff;
  color: white;
  border-color: #007bff;
}
.inquiries-admin .pagination-container .pagination .page.prev a, .inquiries-admin .pagination-container .pagination .page.next a {
  font-weight: 600;
}
.inquiries-admin .pagination-container .pagination .page.gap span {
  background: transparent;
  border: none;
  color: #6c757d;
}

.inquiry-detail-admin .page-header, .answer-form-admin .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}
.inquiry-detail-admin .page-header h2, .answer-form-admin .page-header h2 {
  margin: 0;
  color: #343a40;
}
.inquiry-detail-admin .page-header .header-actions, .answer-form-admin .page-header .header-actions {
  display: flex;
  gap: 1rem;
}
.inquiry-detail-admin .inquiry-info .info-section, .inquiry-detail-admin .inquiry-info .content-section, .inquiry-detail-admin .inquiry-info .answers-section, .inquiry-detail-admin .inquiry-info .summary-box, .inquiry-detail-admin .inquiry-summary .info-section, .inquiry-detail-admin .inquiry-summary .content-section, .inquiry-detail-admin .inquiry-summary .answers-section, .inquiry-detail-admin .inquiry-summary .summary-box, .answer-form-admin .inquiry-info .info-section, .answer-form-admin .inquiry-info .content-section, .answer-form-admin .inquiry-info .answers-section, .answer-form-admin .inquiry-info .summary-box, .answer-form-admin .inquiry-summary .info-section, .answer-form-admin .inquiry-summary .content-section, .answer-form-admin .inquiry-summary .answers-section, .answer-form-admin .inquiry-summary .summary-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}
.inquiry-detail-admin .inquiry-info .info-section h3, .inquiry-detail-admin .inquiry-info .content-section h3, .inquiry-detail-admin .inquiry-info .answers-section h3, .inquiry-detail-admin .inquiry-info .summary-box h3, .inquiry-detail-admin .inquiry-summary .info-section h3, .inquiry-detail-admin .inquiry-summary .content-section h3, .inquiry-detail-admin .inquiry-summary .answers-section h3, .inquiry-detail-admin .inquiry-summary .summary-box h3, .answer-form-admin .inquiry-info .info-section h3, .answer-form-admin .inquiry-info .content-section h3, .answer-form-admin .inquiry-info .answers-section h3, .answer-form-admin .inquiry-info .summary-box h3, .answer-form-admin .inquiry-summary .info-section h3, .answer-form-admin .inquiry-summary .content-section h3, .answer-form-admin .inquiry-summary .answers-section h3, .answer-form-admin .inquiry-summary .summary-box h3 {
  margin: 0 0 1.5rem 0;
  color: #343a40;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}
.inquiry-detail-admin .inquiry-info .info-table, .inquiry-detail-admin .inquiry-summary .info-table, .answer-form-admin .inquiry-info .info-table, .answer-form-admin .inquiry-summary .info-table {
  width: 100%;
}
.inquiry-detail-admin .inquiry-info .info-table th, .inquiry-detail-admin .inquiry-info .info-table td, .inquiry-detail-admin .inquiry-summary .info-table th, .inquiry-detail-admin .inquiry-summary .info-table td, .answer-form-admin .inquiry-info .info-table th, .answer-form-admin .inquiry-info .info-table td, .answer-form-admin .inquiry-summary .info-table th, .answer-form-admin .inquiry-summary .info-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}
.inquiry-detail-admin .inquiry-info .info-table th, .inquiry-detail-admin .inquiry-summary .info-table th, .answer-form-admin .inquiry-info .info-table th, .answer-form-admin .inquiry-summary .info-table th {
  width: 150px;
  font-weight: 600;
  color: #495057;
}
.inquiry-detail-admin .inquiry-info .info-table tr:last-child th,
.inquiry-detail-admin .inquiry-info .info-table tr:last-child td, .inquiry-detail-admin .inquiry-summary .info-table tr:last-child th,
.inquiry-detail-admin .inquiry-summary .info-table tr:last-child td, .answer-form-admin .inquiry-info .info-table tr:last-child th,
.answer-form-admin .inquiry-info .info-table tr:last-child td, .answer-form-admin .inquiry-summary .info-table tr:last-child th,
.answer-form-admin .inquiry-summary .info-table tr:last-child td {
  border-bottom: none;
}
.inquiry-detail-admin .inquiry-info .content-box, .inquiry-detail-admin .inquiry-info .summary-content, .inquiry-detail-admin .inquiry-summary .content-box, .inquiry-detail-admin .inquiry-summary .summary-content, .answer-form-admin .inquiry-info .content-box, .answer-form-admin .inquiry-info .summary-content, .answer-form-admin .inquiry-summary .content-box, .answer-form-admin .inquiry-summary .summary-content {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #007bff;
}
.inquiry-detail-admin .inquiry-info .summary-meta, .inquiry-detail-admin .inquiry-summary .summary-meta, .answer-form-admin .inquiry-info .summary-meta, .answer-form-admin .inquiry-summary .summary-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.inquiry-detail-admin .inquiry-info .summary-meta span, .inquiry-detail-admin .inquiry-summary .summary-meta span, .answer-form-admin .inquiry-info .summary-meta span, .answer-form-admin .inquiry-summary .summary-meta span {
  padding: 0.25rem 0.75rem;
  background: #e9ecef;
  border-radius: 15px;
}
.inquiry-detail-admin .inquiry-info .answer-box, .inquiry-detail-admin .inquiry-summary .answer-box, .answer-form-admin .inquiry-info .answer-box, .answer-form-admin .inquiry-summary .answer-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #28a745;
}
.inquiry-detail-admin .inquiry-info .answer-box .answer-header, .inquiry-detail-admin .inquiry-summary .answer-box .answer-header, .answer-form-admin .inquiry-info .answer-box .answer-header, .answer-form-admin .inquiry-summary .answer-box .answer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.inquiry-detail-admin .inquiry-info .answer-box .answer-header .answer-admin, .inquiry-detail-admin .inquiry-summary .answer-box .answer-header .answer-admin, .answer-form-admin .inquiry-info .answer-box .answer-header .answer-admin, .answer-form-admin .inquiry-summary .answer-box .answer-header .answer-admin {
  font-weight: 600;
  color: #28a745;
}
.inquiry-detail-admin .inquiry-info .answer-box .answer-header .answer-date, .inquiry-detail-admin .inquiry-summary .answer-box .answer-header .answer-date, .answer-form-admin .inquiry-info .answer-box .answer-header .answer-date, .answer-form-admin .inquiry-summary .answer-box .answer-header .answer-date {
  color: #6c757d;
}
.inquiry-detail-admin .inquiry-info .answer-box .answer-content, .inquiry-detail-admin .inquiry-summary .answer-box .answer-content, .answer-form-admin .inquiry-info .answer-box .answer-content, .answer-form-admin .inquiry-summary .answer-box .answer-content {
  color: #495057;
}
.inquiry-detail-admin .form-section, .answer-form-admin .form-section {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.inquiry-detail-admin .form-section h3, .answer-form-admin .form-section h3 {
  margin: 0 0 1.5rem 0;
  color: #343a40;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}
.inquiry-detail-admin .form-section .form-group, .answer-form-admin .form-section .form-group {
  margin-bottom: 1.5rem;
}
.inquiry-detail-admin .form-section .form-group .form-label, .answer-form-admin .form-section .form-group .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #495057;
}
.inquiry-detail-admin .form-section .form-group .form-control, .answer-form-admin .form-section .form-group .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.inquiry-detail-admin .form-section .form-group .form-control:focus, .answer-form-admin .form-section .form-group .form-control:focus {
  outline: none;
  border-color: #007bff;
}
.inquiry-detail-admin .form-submit, .answer-form-admin .form-submit {
  text-align: center;
  padding: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
}
.btn.btn-primary {
  background: #007bff;
  color: white;
}
.btn.btn-primary:hover {
  background: #0056b3;
}
.btn.btn-outline {
  background: transparent;
  color: #6c757d;
  border: 1px solid #6c757d;
}
.btn.btn-outline:hover {
  background: #6c757d;
  color: white;
}
.btn.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.btn.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.alert {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.alert.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.error-messages {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  border: 1px solid #f5c6cb;
}
.error-messages h4 {
  margin-bottom: 0.5rem;
}
.error-messages ul {
  margin: 0;
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .admin-header .admin-header-content {
    padding: 0 1rem;
  }
  .admin-header .admin-header-content h1 {
    font-size: 1.2rem;
    line-height: 1.3;
    word-break: break-word;
  }
  .admin-header .admin-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .admin-header .admin-nav .admin-nav-link {
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
  }
  .admin-content {
    padding: 1rem;
  }
  .dashboard .stats-grid,
  .dashboard .menu-grid {
    grid-template-columns: 1fr;
  }
  .dashboard .stat-card-large .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }
  .dashboard .stat-card-large .stat-item .stat-number {
    font-size: 1.5rem;
  }
  .dashboard .stat-card-large .stat-item .stat-label {
    font-size: 0.8rem;
  }
  .inquiries-admin .page-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start !important;
  }
  .inquiries-admin .page-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .inquiries-admin .inquiries-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .inquiries-admin .inquiries-table {
    min-width: 800px;
  }
  .inquiries-admin .inquiries-table th, .inquiries-admin .inquiries-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .inquiries-admin .inquiries-table th {
    font-size: 0.8rem;
    font-weight: 700;
  }
  .inquiries-admin .inquiries-table .actions .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    margin-right: 0.25rem;
  }
  .inquiries-admin .inquiries-table .status-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  .inquiry-detail-admin .page-header, .answer-form-admin .page-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start !important;
  }
  .inquiry-detail-admin .page-header h2, .answer-form-admin .page-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .inquiry-detail-admin .page-header .header-actions, .answer-form-admin .page-header .header-actions {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .inquiry-detail-admin .inquiry-info .info-section, .inquiry-detail-admin .inquiry-info .content-section, .inquiry-detail-admin .inquiry-info .answers-section, .inquiry-detail-admin .inquiry-info .summary-box, .inquiry-detail-admin .inquiry-summary .info-section, .inquiry-detail-admin .inquiry-summary .content-section, .inquiry-detail-admin .inquiry-summary .answers-section, .inquiry-detail-admin .inquiry-summary .summary-box, .answer-form-admin .inquiry-info .info-section, .answer-form-admin .inquiry-info .content-section, .answer-form-admin .inquiry-info .answers-section, .answer-form-admin .inquiry-info .summary-box, .answer-form-admin .inquiry-summary .info-section, .answer-form-admin .inquiry-summary .content-section, .answer-form-admin .inquiry-summary .answers-section, .answer-form-admin .inquiry-summary .summary-box {
    padding: 1.5rem;
  }
  .inquiry-detail-admin .inquiry-info .info-section h3, .inquiry-detail-admin .inquiry-info .content-section h3, .inquiry-detail-admin .inquiry-info .answers-section h3, .inquiry-detail-admin .inquiry-info .summary-box h3, .inquiry-detail-admin .inquiry-summary .info-section h3, .inquiry-detail-admin .inquiry-summary .content-section h3, .inquiry-detail-admin .inquiry-summary .answers-section h3, .inquiry-detail-admin .inquiry-summary .summary-box h3, .answer-form-admin .inquiry-info .info-section h3, .answer-form-admin .inquiry-info .content-section h3, .answer-form-admin .inquiry-info .answers-section h3, .answer-form-admin .inquiry-info .summary-box h3, .answer-form-admin .inquiry-summary .info-section h3, .answer-form-admin .inquiry-summary .content-section h3, .answer-form-admin .inquiry-summary .answers-section h3, .answer-form-admin .inquiry-summary .summary-box h3 {
    font-size: 1.2rem;
  }
  .inquiry-detail-admin .inquiry-info .info-table th, .inquiry-detail-admin .inquiry-info .info-table td, .inquiry-detail-admin .inquiry-summary .info-table th, .inquiry-detail-admin .inquiry-summary .info-table td, .answer-form-admin .inquiry-info .info-table th, .answer-form-admin .inquiry-info .info-table td, .answer-form-admin .inquiry-summary .info-table th, .answer-form-admin .inquiry-summary .info-table td {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  .inquiry-detail-admin .inquiry-info .info-table th, .inquiry-detail-admin .inquiry-summary .info-table th, .answer-form-admin .inquiry-info .info-table th, .answer-form-admin .inquiry-summary .info-table th {
    width: 120px;
  }
  .inquiry-detail-admin .inquiry-info .summary-meta, .inquiry-detail-admin .inquiry-summary .summary-meta, .answer-form-admin .inquiry-info .summary-meta, .answer-form-admin .inquiry-summary .summary-meta {
    flex-direction: column;
    gap: 0.5rem !important;
  }
  .inquiry-detail-admin .inquiry-info .summary-meta span, .inquiry-detail-admin .inquiry-summary .summary-meta span, .answer-form-admin .inquiry-info .summary-meta span, .answer-form-admin .inquiry-summary .summary-meta span {
    font-size: 0.8rem;
  }
  .inquiry-detail-admin .form-section, .answer-form-admin .form-section {
    padding: 1.5rem;
  }
  .inquiry-detail-admin .form-section h3, .answer-form-admin .form-section h3 {
    font-size: 1.2rem;
  }
  .inquiry-detail-admin .form-section .form-group .form-label, .answer-form-admin .form-section .form-group .form-label {
    font-size: 0.9rem;
  }
  .inquiry-detail-admin .form-section .form-group .form-control, .answer-form-admin .form-section .form-group .form-control {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .btn.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.current-page {
  margin: 7px 50px 0 0;
}

スタイル .dashboard .stat-card-large .stat-item .stat-number.service-area {
  color: #28a745;
}
スタイル .dashboard .stat-card-large .stat-item .stat-number.outside-area {
  color: #6c757d;
}
スタイル .dashboard .stat-card-large .stat-item .stat-number.percentage {
  color: #007bff;
}
スタイル .dashboard .recent-locations-section {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
スタイル .dashboard .recent-locations-section h3 {
  margin: 0 0 1.5rem 0;
  color: #343a40;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}
スタイル .dashboard .recent-locations-section .table-container {
  overflow-x: auto;
}
スタイル .dashboard .recent-locations-section .data-table {
  width: 100%;
  border-collapse: collapse;
}
スタイル .dashboard .recent-locations-section .data-table th, スタイル .dashboard .recent-locations-section .data-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
スタイル .dashboard .recent-locations-section .data-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
}
スタイル .dashboard .recent-locations-section .data-table tr:hover {
  background: #f8f9fa;
}
スタイル .dashboard .recent-locations-section .data-table .badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
スタイル .dashboard .recent-locations-section .data-table .badge.badge-success {
  background: #d4edda;
  color: #155724;
}
スタイル .dashboard .recent-locations-section .data-table .badge.badge-secondary {
  background: #e9ecef;
  color: #6c757d;
}

@media (max-width: 768px) {
  .dashboard .recent-locations-section {
    padding: 1.5rem;
  }
  .dashboard .recent-locations-section .data-table {
    min-width: 600px;
  }
  .dashboard .recent-locations-section .data-table th, .dashboard .recent-locations-section .data-table td {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}
.terms-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 2rem 0 4rem;
  margin-top: 200px;
}
@media (max-width: 1064px) {
  .terms-page {
    margin-top: 180px;
  }
}
.terms-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.terms-page .page-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #1e3c72;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .terms-page .page-title {
    font-size: 1.5rem;
  }
}
.terms-page .terms-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .terms-page .terms-content {
    padding: 2rem 1.5rem;
  }
}
.terms-page .terms-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid #1e3c72;
  border-radius: 4px;
}
.terms-page .terms-section {
  margin-bottom: 2.5rem;
}
.terms-page .terms-section h2 {
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}
@media (max-width: 768px) {
  .terms-page .terms-section h2 {
    font-size: 1.3rem;
  }
}
.terms-page .terms-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}
.terms-page .terms-section ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}
.terms-page .terms-section ol > li {
  counter-increment: item;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
  color: #555;
}
.terms-page .terms-section ol > li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #1e3c72;
}
.terms-page .terms-section ol > li ul {
  margin-top: 0.5rem;
  margin-left: 1rem;
  list-style: disc;
}
.terms-page .terms-section ol > li ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.terms-page .terms-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
  text-align: right;
  color: #666;
}
.terms-page .terms-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}
.terms-page .back-link {
  text-align: center;
  margin-top: 2rem;
}
.terms-page .back-link .btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #1e3c72;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}
.terms-page .back-link .btn:hover {
  background: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}
