/* community.css */
/* 직장인 커뮤니티 스타일 */
#community .section-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.community-header {
  text-align: center;
  margin-bottom: 25px;
}

.community-header i {
  margin-bottom: 15px;
  color: #000;
}

.community-header h3 {
  font-size: 1.5em;
  color: #333;
  margin: 10px 0;
}

.community-intro {
  text-align: center;
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.community-features {
  margin: 25px 0;
}

.community-features h4,
.community-notice h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.community-features ul {
  list-style: none;
  padding: 0;
}

.community-features li {
  margin: 12px 0;
  color: #555;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.community-features li i {
  margin-right: 10px;
  color: #007bff;
  width: 20px;
}

.community-notice {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}

.community-notice p {
  margin: 10px 0;
  color: #555;
  line-height: 1.6;
}

.button-container {
  text-align: center;
  margin-top: 30px;
}

.btn-primary {
  background-color: #000;
  color: white;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary i {
  font-size: 1.2em;
}
