.header-section {
  background-image: url("../images/bg/groupmeal.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.group-meal .intro p {
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
}

.group-meal .icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 80px 0;	
}
.group-meal .icon-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 216px;
  flex-shrink: 0;
  background-color: #f7f7f7;
  padding: 50px 0;
  border-radius:10px;
}

.group-meal .icon-item p {
  font-size:18px;   
  font-weight: 600;
  margin-top:20px;
}

.group-meal .icon-item img{
  width: 80px;
}

.group-meal .section-title {
  text-align: center;
  margin: 100px 0;
  font-size:32px;	
  font-weight: 600;
}
.group-meal .content-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.group-meal .content-section.reverse {
  flex-direction: row-reverse;
}
.group-meal .content-section img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 10px;	
}
.group-meal .text {
  flex: 1;
}

.group-meal .content-section:nth-of-type(odd) .text {
  padding: 20px 0px 20px 40px; /* 왼쪽 여백 */
}

.group-meal .content-section:nth-of-type(even) .text {
  padding: 20px 40px 20px 0px; /* 오른쪽 여백 */
}

.group-meal h3 {
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: left;
}

.group-meal ul {
  list-style: none; /* 기본 말풍선 제거 */
  position: relative;
}

.group-meal ul li {
  position: relative;
  background-color: #f7f7f7;
  margin: 20px 10px;
  padding: 15px 10px 15px 30px; /* 왼쪽 공간 늘림 */
  text-align: left;
  border-radius: 10px;
}

.group-meal ul li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 23px;
  width: 5px;
  height: 5px;
  background-color: #333; /* 사각형 색상 */
}

.group-meal .footer-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 60px;
  padding: 10px;
  background-color: #f7f7f7;
  border-radius:10px;	
}




/* 모바일 기준 */
@media (max-width: 1024px){
	  .group-meal .icon-item {
  width: calc(40% - 10px); /* 좌우 gap의 절반 만큼 뺌 */
  box-sizing: border-box;
  padding:40px 0;
  }
	
}


@media (max-width: 767px) {
.group-meal .icon-item img{
  width: 60px;
}
.group-meal .icon-item {
  width: calc(50% - 10px); /* 좌우 gap의 절반 만큼 뺌 */
  box-sizing: border-box;
  padding:20px 0;
}
.group-meal .icon-item img {
  width: 60px;
}
.group-meal .icon-item p{
  font-size:16px;
	}
.group-meal .intro p {
  padding: 20px 10px 0;
  font-size:16px;
}	
.group-meal .content-section:nth-of-type(odd) .text {
  padding: 20px 0px 20px 0px; /* 왼쪽 여백 */
}
.group-meal .content-section:nth-of-type(even) .text {
  padding: 20px 0px 20px 0px; /* 오른쪽 여백 */
}
.group-meal ul li::before {
  left: 15px;
  top: 18px;
  width: 4px;
  height: 4px;
}
.group-meal ul li {
  position: relative;
  background-color: #f7f7f7;
  margin: 20px 0px;
  padding: 10px 10px 10px 30px; /* 왼쪽 공간 늘림 */
  text-align: left;
  border-radius: 10px;
}
.group-meal h3 {
  padding-bottom: 0px;
  padding-left: 0px;
}
.group-meal .footer-note{
  padding:20px;
}	
	
}