* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.left-content {
    flex: 1;
    min-width: 300px;
}

.right-content {
    flex: 1.5;
    min-width: 300px;
}

header {
    margin-bottom: 30px;
}

h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

.operating-hours {
    margin: 30px 0;
}

.operating-hours h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.operating-hours p {
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.phone-button, .kakao-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.phone-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.kakao-button {
    background-color: #FFE500;
    color: #3C1E1E;
    border: none;
}

.phone-button:hover, .kakao-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.phone-button svg, .kakao-button svg {
    margin-right: 8px;
}

.form-container {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 14px;
}

.required::after {
    content: " *";
    color: #e74c3c;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.privacy-box {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

.submit-button {
    width: 100%;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #ddd;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 5px;
}

.option-item {
    display: flex;
    align-items: center;
}

.option-item input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.option-item label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.hidden {
    display: none;
}

/* 서비스 종류 콤보박스 스타일링 */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px !important;
}

.right-content_head {
    margin-bottom: 40px;
}

/* IE 10+ 화살표 제거 */
select::-ms-expand {
    display: none;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-content, .right-content {
        width: 100%;
    }
    
    .container {
        padding: 0px 15px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .options-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .options-container {
        grid-template-columns: 1fr;
    }
}