/* Kurumsal Diyet/Sağlık Temalı Info Sayfa Tasarımı */
.corp-info-main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 0 32px 0;
}
.corp-info-header {
  font-size: 1.7rem;
  font-weight: 600;
  color: #2e5e4e;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-align: left;
}
.corp-info-section {
  background: #fff;
  border: 1.5px solid #e0ece6;
  border-radius: 14px;
  margin-bottom: 28px;
  padding: 28px 32px 18px 32px;
  box-shadow: 0 2px 12px 0 rgba(46,94,78,0.04);
  transition: box-shadow 0.2s;
}
.corp-info-section:hover {
  box-shadow: 0 4px 24px 0 rgba(46,94,78,0.08);
}
.corp-info-section-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: #3a7ca5;
  margin-bottom: 12px;
  letter-spacing: 0.1px;
}
.corp-info-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}
.corp-info-section ul li {
  font-size: 1.01rem;
  margin-bottom: 7px;
  color: #3d4a3d;
  position: relative;
  padding-left: 0.7em;
  line-height: 1.7;
}
.corp-info-section ul li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #7ed957;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
.corp-info-section p, .corp-info-section a {
  font-size: 1.04rem;
  color: #2e5e4e;
  line-height: 1.7;
}
.corp-info-section a {
  color: #3a7ca5;
  text-decoration: underline;
  transition: color 0.2s;
  font-weight: 500;
}
.corp-info-section a:hover {
  color: #7ed957;
}
.corp-info-section:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .corp-info-main {
    padding: 18px 8px 18px 8px;
  }
  .corp-info-section {
    padding: 18px 10px 12px 10px;
  }
} 