body, html {
    width: 100%;
    height: 100%;
    background-color: black;
    font-size: 30px;
    color: #fff;
    font-family: Arial, sans-serif;
	margin:0;
}

form {
    margin: 0 auto;
	padding: 0 10%;
}

input,textarea {
    font-size: 30px;
	font-weight: 600;
    width: 100%;
	font-family: Arial, sans-serif;
    padding: 25px 20px 20px 20px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.landing {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: auto;
}

.landing img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-container {
    background-color: #1c2858;
    width: 100%;
    max-width: 800px;
    margin: auto;
	padding: 80px 0;
}

.form-title {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.form-title span {
    color: #a2886f;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
}

.radio {
  margin-right: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 30px;
  user-select: none;
  display: flex;
  align-items: center;
}

.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
}

.radio:hover input ~ .checkmark {
  background-color: #f1f1f1;
}

.radio input:checked ~ .checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio input:checked ~ .checkmark:after {
  display: block;
}

.radio .checkmark:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.checkbox {
  margin-right: 10px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 30px;
  user-select: none;
  display: flex;
  align-items: center;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
}

.checkbox:hover input ~ .checkmark {
  background-color: #f1f1f1;
}

.checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  margin-right: 10px;
}

.modal-link {
  background: none;
  border: none;
  color: #a2886f;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 30px;
  white-space: nowrap;
}


.submit-button {
    background-color: #a2886f;
    color: #fff;
    border: none;
    padding: 20px 0;
    font-size: 30px;
	font-weight: 700;
	font-family: Arial;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	color:#000;
	width:100%;
}

.submit-button:hover {
    background-color: #8c7256;

}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
	font-size:10px;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-link {
    background: none;
    border: none;
    color: #a2886f;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 30px;
}

.modal-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-title {
    color: #1c2858;
    font-size: 24px;
	margin:0;
}

.close {
    color: #888;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.modal-body {
    color: #333;
    line-height: 1.6;
}

.modal-footer {
    text-align: right;
    margin-top: 20px;
}

.bottom-fix {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  /*background-color: #a2886f;*/
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  height:80px;
  max-width:800px;
  z-index: 1000;
}

.bottom-img {
  flex: 1;
  text-align: center;
  cursor: pointer;
}
.bottom-img a{text-decoration: none;color: inherit;}
.bottom-img p{font-size:14px;color:#000;margin:0;}
.bottom-img img {width: 50px;height: 50px;}

.landing-fix{height:80px;}
.landing-fix-img img {width: 100% !important;height: 87px !important;}

.blank {width:100%;height:80px;}

#detail_button_1{z-index:1;background-color:transparent;position:absolute;top:17.7%;left:50%;transform:translateX(-50%);width:200px;height:80px;}
#detail_button_2{z-index:1;background-color:transparent;position:absolute;top:24.7%;left:50%;transform:translateX(-50%);width:200px;height:80px;}

/* 반응형 스타일 */
@media (max-width: 768px) {
	.bottom-fix{height:80px;}
	.bottom-img img {width: 30px;height: 30px;}
	.landing-fix{height:100px;}
	.landing-fix-img img {width: 100% !important;height: 100% !important;}

    .form-container {
		padding: 40px 0;
	}
	
    .form-title {
        font-size: 26px;
    }
    
    input, textarea {
        font-size: 14px;
    }
	
	.radio{font-size:20px;}
	.checkbox-text{font-size:14px;}
	.modal-link{font-size:14px;}
    
    .submit-button {
        font-size: 26px;
        padding: 12px 24px;
    }
	
	#detail_button_1{width:100px;height:40px;top:17.6%;}
	#detail_button_2{width:100px;height:40px;top:24.6%;}
}