
							  body {
								font-family: Arial, sans-serif;
								color: #212121;
								margin: 0;
								padding: 0;
							  }
							  .container {
								max-width: 800px;
								margin: 0 auto;
								padding: 20px;
								display: flex;
								justify-content: space-between;
								align-items: flex-start;
								flex-wrap: wrap;
							  }
							  h1, h2 {
								font-size: 26px;
								color: #000;
								width: 100%;
								margin-top: 0;
								margin-bottom: 40px; /* 수정된 부분 */
								font-weight: 600;
							  }
							  h2 {
								font-size: 60px;
							  }
							  a {
								color: #fff;
								font-weight: bold;
								text-decoration: none;
							  }
							  .button-container {
								display: flex;
								flex-direction: column;
							  }
							  .button {
								width: 250px;
								height: 70px;
								margin-bottom: 10px;
								text-align: center;
								line-height: 70px;
								font-size: 18px;
								color: #fff;
								font-weight: bold;
								border: none;
								border-radius: 5px;
								cursor: pointer;
								background-color: transparent;
							  }
							  .btn-green {
								background-color: #34ccbd;
							  }
							  .btn-green a{
								  color:#fff;
							  }
							  .btn-black {
								background-color: #000;
							  }
							  .btn-black a{
								  color:#fff;
							  }

							  #procedure {
								margin-top: 20px;
								width: 48%;
							  }
							  #procedure h2 {
								font-size: 16px;
								color: #000;
								font-weight: bold;
							  }
							  #procedure ul {
								list-style-type: none;
								margin: 0;
								padding: 0;
							  }
							  #procedure ul li {
								margin-bottom: 5px;
								white-space: nowrap; /* 줄 바꿈 방지 */
							  }
							  .footer {
								width: 100%;
								margin: 0 auto;
								text-align: center;
								margin-top: 20px;

							  }
							  .footer img {
								width: 50%; /* PC 화면에서는 50%로 설정 */
								height: auto; /* 이미지 높이를 자동으로 조정하여 비율 유지 */
							  }
							  /* 모바일 화면에서 이미지를 화면에 꽉 차게 설정 */
							  @media only screen and (max-width: 767px) {
								#footer img {
								  width: 100%;
								}
							}
							@media (max-width: 480px) {

								 h1{
								  font-size: 20px;
								  line-height:30px;
							      }
							      h2 {
								  font-size: 30px;
								  height:10px;
								  }

							  }

						