#content{	margin: 0px auto;	width: calc:(100%-260px);margin-top: -60px;}.right_content{margin-top:-30px;}




.as_title{
	font-size: 2em;
	font-weight: bold;
}


.service-section {
  background: #f9fafb;
  padding: 60px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch; /* 모든 박스 높이를 같게 */
}

.service-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 버튼을 아래쪽에 고정 */
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-item h2 {
  font-size: 22px;
  color: #222;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 버튼 그룹 가로 정렬 */
.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #0078d7;
  color: #0078d7;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.service-link:hover {
  background: #0078d7;
  color: #fff;
}

.highlight {
  border: 2px solid #0078d7;
  background: #e8f3ff;
}

.as-button {
  background: linear-gradient(90deg, #0078d7, #0096ff);
  color: white;
	width: 100%;
  border: none;
	font-size: 1.2em;
	  padding: 10px 20px;
  border-radius: 30px;
  min-height: 50px; /* 원하는 높이로 고정 */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 120, 215, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.as-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 120, 215, 0.45);
}


@media(max-width:625px){
	
	.subsscreen{
	margin-top: 25px;
grid-template-columns: 99%; grid-gap: 1%; display: grid;
}	

	
	
	
	
	
	
	
	
	
}


