.inquiry_container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.inquiry-section {
    margin-bottom: 60px;
}

.inquiry-section > p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.notice-box {
    background-color: #F3F6FA;
    border: 1px solid #D3D6DF;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 20px;
}

.notice-box h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.notice-box h3 {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.notice-box p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.email-notice {
    margin-bottom: 23px;
}

.form-section {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .container {
        margin: 1rem auto;
    }
    
    .form-section {
        padding: 1rem;
    }
    .submit-btn {
        width:100%;
    }
}

.privacy-agreement {
    margin-bottom: 2rem;
    background-color: #fff;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #333;
}

/* Add error state for checkbox */
.checkbox-label.error input[type="checkbox"] {
    outline: 2px solid #dc3545;
}

