/* PAGE HERO */


.page-hero h1 { 
  font-size: clamp(1.8rem, 4vw, 2.8rem); 
  font-weight: 800; color: var(--green); margin-bottom: 12px; 
}


/* WHO */
.who-section {     
  background: #eef7fc; 
}

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

.who-card { 
  background: #fff; border-radius: 
    var(--radius); 
  padding: 24px;
  display: flex; gap: 16px; 
  align-items: flex-start; 
  box-shadow: 3px 3px 10px #cce3eb;
}

.who-icon {
  max-width: 100px;
}

.who-icon img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
}

.who-icon img:hover {
    animation: jump 0.5s ease-in;
}

.who-card h3 { 
  font-size: 1.3rem;
  font-weight: 800;
  color: #7cc6ee;
  margin-bottom: 8px;
}

/*　WHO　///*/



/* INFO TABLE */

.info-table-wrap { 
  overflow: hidden; 
  min-width: 360px; 
  box-shadow: 3px 3px 10px #cce3eb;
  border-radius: 20px; 
}

.info-table { 
  width: 100%; 
  border-collapse: collapse; 
  background: #fff; 
}

.info-table th { 
  background: #7cc6ee; 
  color: #fff; 
  padding: 14px 20px; 
  font-weight: 700; 
  font-family: 'M PLUS Rounded 1c', sans-serif; 
  text-align: left; 
  width: 160px; 
  border-bottom: 1px solid #fff;
}

.info-table td { 
  padding: 16px 20px; 
  border-bottom: 1px solid rgba(168,216,234,0.3); 
}

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

.info-table tr:nth-child(odd) td { 
  background: #eef7fc; 
}


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

.info-table td .badge-open{
  margin-right: 10px;
}

.info-table td a{
  display: inline-block;
  margin-left: 10px;
}

.info-table td a:hover{
  opacity: 0.75;
}

.info-table td i{
  margin-right: 5px;
}

.info-table td p{
  letter-spacing: 0.05rem;
}

/* INFO TABLE ///*/


/* CONTACT */
.contact-section { 
  background: var(--sky-pale); 
}

.contact-lead { 
  text-align: center; 
  margin-bottom: 30px; 
  margin-top: 10px;
  line-height: 1.8; 
  color: #777; 
}

.contact-lead p{
  color: #587dad;
  font-weight: 500;
  line-height: 1.5;
}

.contact-lead p span{
  display: inline-block;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(168,216,234,0.2);
  max-width: 700px;
  margin: 0 auto;
}

#inquiry .section-title {
  padding-left: 0px; 
}

@media (max-width: 1000px) {
  
  .who-card {
    align-items: center;
  }
  
  .ie-intro-grid { 
    grid-template-columns: 1fr; 
  }
  
  .features-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .who-grid { 
    grid-template-columns: 1fr; 
  }
}


@media (max-width: 768px) {
  
  .who-icon {
    width: 100%;
    max-width: 30%;
  }
  
  .info-table-wrap {
    min-width: 100%;
  }
  
  .contact-lead { 
    margin-bottom: 20px; 
  }

  .info-table th {
    padding: 10px 20px;
    width: 100px;
  }
  
  .info-table {
    min-width: 100%;
  }
  
}
  

@media (max-width: 768px) {
  .who-section .section-title h2{
    letter-spacing: -2px;
  }