.banner {
  width: 100%;
  min-height: 90rem;
  background: url('../assets/img/banner-bg.png') center top / cover no-repeat;
  background-size: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-con {
  width: 100%;
  margin: 0 auto;
  display: flex;
  max-width: 1600px;
}

.banner-tx {
  margin-left: 5rem;
  width: 60%;
  gap: 4rem;
  word-break: keep-all;
}

.banner-tx .title {
  font-size: 4rem;
}

.banner-tx .title-unit{
   font-size: 3rem;
}

.banner-tx .subtitle {
  font-size: 2.2rem;
  line-height: 1.5;
}

.title-img {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.banner-btn {
  background-color: var(--blue);
  color: var(--white);
  font-size: 2.2rem;
  border-radius: 999rem;
  padding: 1.2rem 4rem;
  margin-top: 2rem;
  display: inline-block;
  white-space: nowrap;
  width: auto;
  max-width: max-content; 
  align-self: flex-start;
}


.point {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10rem 4rem;
  margin: 0 auto 8rem;
  width: 100%;
}

.point-tit-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.point-tit-con img {
  max-width: 5.5rem;
}
.point-tit {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--blue2);
}

.point-tit2 {
  position: relative;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.point-tit2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 0.6em;
  background-color: var(--sky);
  z-index: -1;
  border-radius: 2rem;
}

.point-cards {
  gap: 2rem;
  margin-top: 8rem;
  display: flex;
  flex-direction: row;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.point-card {
  border-radius: 3rem;
  padding: 6rem 2rem 7rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 26rem;
  min-width: 26rem;
  gap: 2rem;
}

.point-card__marker {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue);
  border: 1px solid var(--blue);
  background: transparent;
  border-radius: 999rem;
  padding: 1rem 2rem;
}

.point-card__marker2 {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  background-color: var(--blue);
  border: none;
  border-radius: 999rem;
  padding: 1rem 2rem;
}

.point-card-tit {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
}

.point-card-subtit {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: -0.2px;
  min-height: 12rem;
  word-break: keep-all;
}

.function {
  width: 100%;
  background: url('../assets/img/fun-bg.png') center center / cover no-repeat;
  position: relative;
  padding: 10rem 8rem 13rem;
  margin-bottom: 6rem;
}

.fuc-tit {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: bold;
}
.fuc-tit2 {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 3.6rem;
  line-height: 1;
  z-index: 2;
  font-weight: 700;
}

.fuc-tit2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -0.2em;
  right: -0.2em;
  height: 0.6em;
  background-color: var(--blue);
  border-radius: 1rem;
  z-index: -1;
}

/* 카드 공통 스타일 */
.func-cards {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

/* 1행: 3열 */
.func-cards--row {
  grid-template-columns: repeat(3, 1fr);
}

/* 2행: 2열 */
.func-cards--wide {
  grid-template-columns: repeat(2, 1fr);
}

.func-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.func-card img {
  max-width: 15rem;
  max-height: 13rem;
}

.func-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.func-card__desc {
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--text);
  flex-grow: 1;
}
.banner-3 {
  padding: 4rem;
  margin: 0 auto;
  width: 100%;
  background: url('../assets/img/banner-3.png') center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  max-width: 1400px;
  width: 100%;
}

.banner-3-tx-con {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.banner-3-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
}

.ban-3-tx1 {
  font-weight: 500;
  font-size: 2rem;
}

.ban-3-tx2 {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.3;
}

.banner-3-icon1 {
  max-width: 260px;
}

.banner-3-icon2 {
  flex-shrink: 0;
  width: 6rem;
  height: auto;
}
.price {
  background-color: var(--gray3);
  padding: 10rem 8rem 13rem;
  margin-top: 6rem;
}
/* 스텝 전체 래퍼 */
.price-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin-top: 8rem;
  position: relative;
}

.price-step2 {
  display: flex;
  flex-direction: column;
}

/* 각 스텝 */
.price-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  gap: 2rem;
}

/* 스텝 사이 화살표 */
.price-step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: var(--gray2);
}

.step-number-tit {
  font-size: 2rem;
}
.step-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
}

.step-icon {
  width: 14rem;
  height: 14rem;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}

.step-label {
  font-size: 2rem;
  color: var(--text);
  font-weight: 500;
}
/* 부모 컨테이너 */
.price-box-con {
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

/* 왼쪽 텍스트 */
.price-box-tx {
  font-size: 3.2rem;
  line-height: 1.4;
  flex-shrink: 0;
  text-align: left;
}

/* 카드 래퍼 */
.price-box-cards {
  display: flex;
  gap: 3rem;
}

/* 각 카드 */
.price-card {
  background: #fff;
  border: 1px solid var(--sky);
  border-radius: 1.6rem;
  padding: 2rem;
  max-width: 37rem;
  min-width: 37rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 20px rgba(49, 130, 246, 0.2);
  cursor: pointer;
}

.price-reco {
  max-width: 3.4rem;
}

/* 헤더 영역 */
.price-card__header {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan-title {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: underline;
}
.plan-price {
  font-size: 3.2rem;
  margin-top: 1.5rem;
  color: var(--blue);
}
.plan-price .unit {
  font-size: 1.4rem;
  margin-left: 0.4rem;
}
.plan-meta {
  font-size: 1.4rem;
  color: var(--gray);
  border-radius: 0.4rem;
}
.plan-duration {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  z-index: 2;
}

.plan-duration::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 47%;
  height: 1rem;
  background-color: var(--yellow);
  z-index: -1;
  border-radius: 2rem;
}

.plan-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem 0.8rem;
  font-weight: 400;
  color: #1a73e8; 
  background-color: #e8f0fe;
  border-radius: 10rem;
  vertical-align: middle;
}

/* 기능 리스트 */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.plan-features .unit {
  font-size: 1.4rem;
}

/* 개별 항목 박스 스타일 */
.plan-features li {
  font-size: 1.6rem;
  line-height: 1.4;
  background-color: var(--gray3);
  padding: 1rem;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

/* 마지막 항목은 margin 제거 */
.plan-features li:last-child {
  margin-bottom: 0;
}

.addon-box {
  padding: 0 1rem;
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 2rem;
}

.addon-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.addon-list li {
  position: relative;
  padding-left: 20px;
  margin: 1rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

.addon-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--blue);
  font-size: 1.4rem;
}

.addon-list li .unit {
  font-size: 1.4rem;
}

.addon-desc {
  color: #888;
  font-size: 1.3rem;
  margin-left: 1rem;
}

.list-divider {
  border: none;
  border-top: 1px dashed #ccc;
  margin: 8px 0;
}
.list-subtitle {
  font-weight: 600;
  color: #444;
}


.plan-btn {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1rem;
  font-size: 1.6rem;
  cursor: pointer;
}

.inquiry {
  width: calc(100% - 80px);
  margin: 0 auto;
  max-width: 1400px;
  padding: 10rem 0;
}

/* 타이틀 */
.point-tit-con {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.inqu-icon {
  width: 5rem;
  height: auto;
}

/* 폼 박스 */
.inquiry-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1.2rem;
  padding: 6rem;
  margin-top: 7rem;
}
.esse {
  color: var(--red);
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
/* 폼 레이아웃 */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group.full {
  grid-column: 1 / -1;
}

/* 라벨 & 입력 */
label {
  font-size: 1.6rem;
}
.required {
  color: var(--red);
}
input[type='text'],
input[type='email'],
textarea {
  border: 1px solid #d9d9d9;
  border-radius: 0.6rem;
  padding: 1.2rem;
  font-size: 1.4rem;
  resize: vertical;
}
textarea {
  min-height: 12rem;
}

/* 개인정보 동의 */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.consent-text {
  border: 1px solid #d9d9d9;
  border-radius: 0.6rem;
  padding: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--gray);
  max-height: 17rem;
  height: 17rem;
  overflow-y: auto;
  width: 100%;
}

/* 버튼 */
.inquiry-btn {
  width: 16rem;
  margin: 0 auto;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 1.4rem 0;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.inquiry-btn:hover {
  opacity: 0.9;
}

#topBtn {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 3000;
}

.banner-btn:hover {
  background-color: #4793ff;
}
.point-box1:hover {
  background-color: var(--sky);
}
.point-box2:hover {
  background-color: var(--blue3);
}
.price-card:hover {
  background-color: var(--blue3);
}

/* ------------------ 반응형 ------------------  */
@media (max-width: 1440px) {
  .banner {
    background-position: center 1.25rem;
  }
  .banner-tx {
    margin-left: 5rem;
    width: 60%;
    gap: 2rem;
    word-break: keep-all;
  }

  .banner-tx .title {
    font-size: 3rem;
  }

  .banner-tx .title-unit{
    font-size: 2rem;
  }
  .banner-tx .subtitle {
    font-size: 1.6rem;
  }
  .banner-img img {
    max-width: 80%;
  }
  .banner-btn {
    font-size: 2rem;
  }
  .bn-right {
    max-width: 65rem;
  }
  .point-cards {
    gap: 2rem;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .point-card {
    width: 100%;
    max-width: 100%;
    padding: 3rem 2rem;
  }

  .point-card-subtit {
    min-height: auto;
  }
  #topBtn {
    right: 2rem;
  }
}

@media (max-width: 1200px) {  
  .banner {
    background-position: center -20rem;
    min-height: 70rem;
  }

  .bn-right {
    max-width: 40rem;
    margin-right: 4rem;
  }

  .price-steps {
    gap: 4rem;
    margin-top: 6rem;
  }
  .price-step:not(:last-child)::after {
    right: -1.5rem;
    font-size: 2rem;
  }
  .price-box-con {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8rem;
  }
  .step-label {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .banner-tx .title {
    font-size: 2.5rem;
  }

  .banner-tx .title-unit{
    font-size: 1.5rem;
  }
  
  .bn-right {
    max-width: 35rem;
    margin-right: 4rem;
  }

  .price-box-cards {
    flex-direction: column;
    align-items: center;
  }
  .price-card {
    width: 100%;
    max-width: 40rem;
  }
  .step-icon {
    width: 10rem;
    height: 10rem;
  }
  .step-icon img {
    width: 4rem;
    height: 4rem;
  }
  .ban-3-tx2 {
    font-size: 2.8rem;
  }
  .point-card__marker {
    font-size: 1.6rem;
  }
  .point-card__marker2 {
    font-size: 1.6rem;
  }
  .point-tit {
    font-size: 2.4rem;
  }
  .point-tit2 {
    font-size: 2.8rem;
  }
  .fuc-tit {
    font-size: 2.4rem;
  }
  .fuc-tit2 {
    font-size: 2.8rem;
  }
  .fc-img {
    max-width: 70% !important;
  }
  .func-card__title {
    font-size: 2rem;
  }
  .banner-3 {
    padding: 1rem;
  }
  .price-box-tx {
    font-size: 2.8rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .banner {
    background-position: center 0;
    min-height: 90rem;
  }
  .banner-con {
    display: flex;
    flex-direction: column;
  }
  .banner-tx {
    margin-left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 2rem;
  }

  .banner-tx .title {
    font-size: 3rem;
  }

  .banner-tx .title-unit{
    font-size: 2rem;
  }

  .bn-right {
    max-width: 45rem;
    margin-right: 0
  }

  .title-img {
    gap : 1rem;
    justify-content: center;
    flex-wrap: wrap; /* 너무 작을 경우 줄바꿈 허용 */
  }

  .title-img span {
    font-size: 1.6rem;
  }
  
  .banner-btn {
    font-size: 1.6rem;
    padding: 1rem 3rem;
    margin: 2rem auto;
  }

  #topBtn {
    width: 4rem;
    height: 4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .inquiry-btn {
    width: 100%;
  }
  .point-cards {
    grid-template-columns: 1fr;
  }
  .func-cards {
    grid-template-columns: 1fr;
  }

  .ban-3-tx2 {
    font-size: 2rem;
  }
  .banner-3-icon1 {
    max-width: 150px;
  }
  .ban-3-tx1 {
    font-size: 1.6rem;
  }
  .point-tit {
    font-size: 2rem;
  }
  .point-tit2 {
    font-size: 2.4rem;
  }
  .fuc-tit {
    font-size: 2rem;
  }
  .fuc-tit2 {
    font-size: 2.4rem;
  }
  .price-card {
    max-width: 100%;
    min-width: auto;
  }
  .price-box-tx {
    font-size: 2.4rem;
    text-align: center;
  }
  .point-tit2::after {
    bottom: -4px;
  }
  .price-box-con {
    gap: 4rem;
    margin-top: 8rem;
  }
  .function {
    padding: 4rem 0;
  }
  .point {
    padding: 4rem 2rem;
  }
  .price {
    padding: 4rem 0;
  }
  .inquiry-box {
    padding: 4rem;
  }

  .step-icon {
    width: 6rem;
    height: 6rem;
  }

  .step-icon img {
    width: 3rem;
    height: 3rem;
  }
  .price-steps {
    gap: 2rem;
  }
  .step-number-tit {
    font-size: 1.6rem;
  }

  .price-box-cards {
    flex-direction: column;
  }
  .function {
    margin-bottom: 0rem;
  }
  .price {
    margin-top: 0rem;
  }
  .inquiry {
    width: calc(100% - 40px);
  }

  .point-card-tit br {
    display: none;
  }
  .point-card-subtit {
    font-size: 1.5rem;
    padding: 0 1.2rem;
    text-align: center;
    word-break: keep-all;
  }
}

@media (min-width: 674px) and (max-width: 768px) {
  .price-step {
    min-width: 11.5rem;
  }
}

/* 모바일 */
@media (max-width: 600px) {
  .banner {
    background-position: center -2rem;
    min-height: 85rem;
  }

  .banner-tx .title {
    font-size: 2.5rem;
  }
  .banner-tx .title-unit{
    font-size: 2rem;
  }
  .banner-3-icon1 {
    width: 80px;
  }
  .bn-right {
    max-width: 40rem;
  }
  .ban-3-tx1 {
    font-size: 1.4rem;
  }
  .ban-3-tx2 {
    font-size: 1.6rem;
  }
  .banner-3-icon2 {
    display: none;
  }
  .banner-3 {
    gap: 6rem;
    margin: 5rem 0 ;
  }  
}

@media (max-width: 480px) {
  .banner-tx .title {
    font-size: 2.2rem;
  }

  .banner-tx .title-unit{
    font-size: 1.5rem;
  }

  .bn-right {
    max-width: 35rem;
  }

  .price-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
  }

  .price-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 4rem;
    row-gap: 0.4rem;
    align-items: center;
  }

  .price-step .step-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
  }

  .price-step2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .step-label {
    color: var(--gray2);
    font-weight: 400;
  }

  .price-step .step-label {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }
  .price-step:not(:last-child)::after {
    display: none;
  }

  .step-icon img {
    width: 5rem;
    height: 5rem;
  }
  .step-icon {
    width: 9rem;
    height: 9rem;
  }

  .inquiry-box {
    padding: 2rem;
  }
  .point-tit {
    font-size: 1.6rem;
  }
  .fuc-tit {
    font-size: 1.6rem;
  }
  .point-card {
    padding: 2rem 2rem;
    border-radius: 2rem;
  }
  .point-card-tit {
    font-size: 1.6rem;
  }
  .point-card-subtit {
    font-size: 1.4rem;
  }
  .func-card {
    padding: 2rem 2rem;
    gap: 1rem;
  }
  .func-card__title {
    font-size: 1.6rem;
  }
  .func-card__desc {
    font-size: 1.4rem;
  }
  .plan-price {
    font-size: 2.6rem;
  }
  .plan-features li {
    font-size: 1.4rem;
    line-height: 1.4;
    background-color: var(--gray3);
    padding: 1rem;
    border-radius: 0.8rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 425px) {
  .banner {
    background-position: center -6rem;
    min-height: 84rem;
  }

  .title-img {
    gap : 1rem;
    justify-content: center;
    flex-wrap: wrap; /* 너무 작을 경우 줄바꿈 허용 */
  }

  .title-img span {
    font-size: 1.6rem;
  }
  
  .banner-3 {
    gap: 2rem;
    margin: 3rem 0;
  }
}
@media (max-width: 375px) {
  .banner {
    background-position: center -8rem;
    min-height: 80rem;
  }

  .title-img span {
    font-size: 1.4rem;
  }

  .ban-3-tx2 {
    font-size: 1.3rem;
  }
}

/* 안전사고 동영상 섹션 스타일 */
.safety-video {
  padding: 4rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 2rem 0;
}

.safety-video .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.video-container {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
}

.video-title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--blue2);
  margin-bottom: 1rem;
}

.video-title p {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.video-player {
  position: relative;
  max-width: 800px;
  height: 300px; /* 원하는 높이로 조정 가능 */
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(248, 247, 247, 0.15);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.video-player:hover .video-thumbnail {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-player:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: white;
  transform: scale(1.1);
}

.play-button i {
  font-size: 2.5rem;
  color: var(--blue);
  margin-left: 5px;
}

.video-description {
  max-width: 600px;
  margin: 0 auto;
}

.video-description p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .safety-video {
    padding: 3rem 2rem;
  }
  
  .video-container {
    padding: 1.5rem 2rem;
  }
  
  .video-title h2 {
    font-size: 2.4rem;
  }
  
  .video-title p {
    font-size: 1.6rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 2rem;
  }
  
  .video-description p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .safety-video {
    padding: 2rem 1rem;
  }
  
  .video-container {
    padding: 1rem 1rem;
  }
  
  .video-title h2 {
    font-size: 2rem;
  }
  
  .video-title p {
    font-size: 1.4rem;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 1.8rem;
  }
  
  .video-description p {
    font-size: 1.3rem;
  }
}
