.style05 {
  width: 100%;
}
.style05 .floatL {
  float: left;
  width: 574px;
}
.style05 .floatR {
  float: right;
  width: 574px;
}
.style05 .num {
}
.style05 .cont {
  background-color: #f0f0f0;
  padding: 40px 40px;
}
/*.style05 .cont2 {min-height: 220px;  }*/
.style05 .cont .tit {
  font-size: 26px;
  color: #5c9f54;
  font-weight: 500;
}
.style05 .cont .tit2 {
  font-size: 26px;
  min-height: 70px;
  color: #5c9f54;
  font-weight: 500;
}
.style05 .cont ul.txt {
  font-size: 16px;
}
.style05 .cont ul.txt li {
  padding-left: 13px;
  position: relative;
  background: url("../../../common/bullet/bullet02.png") no-repeat 2px 10px;
}
.style05 .cont ul.txt li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #555;
  position: absolute;
  left: 3px;
  top: 12px;
  border-radius: 50%;
}
.style05 .img {
  text-align: center;
}
.style05 img {
  vertical-align: top;
}
.style05 .last .img {
  padding-top: 100px;
  text-align: center;
}

.product-container {
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
  padding: 20px;
  max-width: 1200px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap; /* 반응형을 위해 설정 */
}

/* 이미지 영역 */
.product-image {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 텍스트 정보 영역 */
.product-info {
  width: 60%;
  padding-left: 20px;
}

.main-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0b588f;
  margin-bottom: 15px;
}

.main-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.certification-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b588f;
  margin-bottom: 15px;
  text-align: center;
}

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

.system-container2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.system-item {
  padding: 20px;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  font-size: 1.2rem;
  text-align: center;
  color: #333;
  box-sizing: border-box;
}

/* 버튼 스타일 */
.product-button {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  text-align: center;
  background-color: #0b588f;
  color: #fff !important;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
  font-weight: 500;
}

.product-button:hover {
  background-color: #084067;
}

/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/
@media (max-width: 1023px) {
  .style05 .floatL {
    float: none;
    width: 100%;
  }
  .style05 .floatR {
    float: none;
    width: 100%;
    padding-top: 50px;
  }
  .style05 .cont {
    min-height: auto;
    padding: 20px 25px;
  }
  .style05 .cont .tit {
    font-size: 20px;
    min-height: auto;
  }
  .style05 .cont .tit2 {
    font-size: 20px;
    min-height: auto;
  }
  .style05 .cont ul.txt {
    font-size: 13px;
    padding-top: 15px;
  }
  .style05 .cont ul.txt li {
    background: url("../../../common/bullet/bullet01.png") no-repeat 2px 7px;
  }
  .style05 .last {
    display: none;
  }
  .product-container {
    flex-direction: column;  /* 위아래로 배치 */
  }

  .product-image, .product-info {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .system-container {
    grid-template-columns: 1fr; /* 한 열로 배치 */
  }

  .system-item {
    padding: 15px;
  }

  .product-button {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
@media (max-width: 480px) {
}
@media (max-width: 320px) {
}
